:root {
  --primary: #6C5CE7;
  --primary-dark: #5849c2;
  --bg: #FFFFFF;
  --bg-alt: #F4F3FB;
  --text: #1F1B3A;
  --text-muted: #6B6785;
  --border: #E6E3F5;
}

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

html { scroll-behavior: smooth; }

.custom-cursor { display: none; }

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28'%3E%3Ccircle cx='14' cy='14' r='11' fill='%236C5CE7' fill-opacity='0.75'/%3E%3Ccircle cx='14' cy='14' r='11' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") 14 14, auto;
  }
  a, button {
    cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36'%3E%3Ccircle cx='18' cy='18' r='15' fill='%236C5CE7' fill-opacity='0.55'/%3E%3Ccircle cx='18' cy='18' r='15' fill='none' stroke='white' stroke-width='1.5'/%3E%3C/svg%3E") 18 18, pointer;
  }
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero {
  position: relative;
  background: linear-gradient(135deg, #6C5CE7 0%, #8E7CF0 100%);
  color: white;
  padding: 80px 0 70px;
  text-align: center;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 1; }

.hero-blobs {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.5;
  mix-blend-mode: soft-light;
}
.blob-1 {
  width: 340px; height: 340px;
  background: #FFFFFF;
  top: -120px; left: -80px;
  animation: float1 14s ease-in-out infinite;
}
.blob-2 {
  width: 280px; height: 280px;
  background: #FF9FE0;
  bottom: -100px; right: -60px;
  animation: float2 18s ease-in-out infinite;
}
.blob-3 {
  width: 220px; height: 220px;
  background: #74E0D6;
  top: 40%; right: 15%;
  animation: float3 16s ease-in-out infinite;
}
.blob {
  --mx: 0px;
  --my: 0px;
  transition: transform 0.3s ease-out;
}
@keyframes float1 {
  0%, 100% { transform: translate(var(--mx), var(--my)) scale(1); }
  50% { transform: translate(calc(var(--mx) + 40px), calc(var(--my) + 30px)) scale(1.1); }
}
@keyframes float2 {
  0%, 100% { transform: translate(var(--mx), var(--my)) scale(1); }
  50% { transform: translate(calc(var(--mx) - 30px), calc(var(--my) - 40px)) scale(1.15); }
}
@keyframes float3 {
  0%, 100% { transform: translate(var(--mx), var(--my)) scale(1); }
  50% { transform: translate(calc(var(--mx) - 25px), calc(var(--my) + 25px)) scale(0.9); }
}
@media (prefers-reduced-motion: reduce) {
  .blob { animation: none; }
}

.logo { font-size: 20px; font-weight: 700; margin-bottom: 24px; opacity: 0.95; }
.hero h1 { font-size: clamp(28px, 5vw, 42px); margin-bottom: 18px; line-height: 1.25; }
.hero-subtitle { font-size: 17px; opacity: 0.92; max-width: 560px; margin: 0 auto 32px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: white; color: var(--primary); box-shadow: 0 4px 14px rgba(0,0,0,0.08); }
.btn-primary:hover { background: #F0EEFA; box-shadow: 0 8px 20px rgba(0,0,0,0.14); }
.btn-secondary { background: rgba(255,255,255,0.15); color: white; border: 1.5px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { background: rgba(255,255,255,0.25); }
.btn-outline { background: transparent; color: var(--primary); border: 1.5px solid var(--primary); margin-top: 12px; }
.btn-outline:hover { background: var(--bg-alt); }

.lead-magnet-section { padding: 40px 0 0; }
.lead-magnet-box {
  background: linear-gradient(135deg, rgba(108,92,231,0.10), rgba(142,124,240,0.10));
  border: 1.5px solid var(--primary);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
}
.lead-magnet-box h3 { font-size: 20px; margin-bottom: 10px; }
.lead-magnet-box p { color: var(--text-muted); font-size: 15px; max-width: 520px; margin: 0 auto 18px; }

.section { padding: 64px 0; }
.section-alt { background: var(--bg-alt); }
.section h2 { font-size: 28px; text-align: center; margin-bottom: 40px; }

.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(108,92,231,0.14);
  border-color: rgba(108,92,231,0.35);
}
.card-icon { font-size: 32px; margin-bottom: 12px; }
.example-img {
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: top;
  border-radius: 10px;
  margin-bottom: 14px;
  border: 1px solid var(--border);
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 15px; }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { text-align: center; }
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  margin: 0 auto 14px;
}
.step p { font-size: 14px; color: var(--text-muted); }

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(108,92,231,0.08);
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.pricing-table th { background: var(--primary); color: white; font-size: 14px; }
.pricing-table td { font-size: 15px; }
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 13px; margin-top: 16px; }

.contact-subtitle { text-align: center; color: var(--text-muted); margin-bottom: 28px; }

.contact-form {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-form input, .contact-form textarea {
  padding: 13px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--primary); }
.contact-form button { margin-top: 6px; }
.consent-note { font-size: 12px; color: var(--text-muted); line-height: 1.4; margin: -2px 0 0; }

.success-message {
  max-width: 420px;
  margin: 16px auto 0;
  text-align: center;
  background: #E8F8EE;
  color: #1E8449;
  padding: 14px;
  border-radius: 12px;
  font-size: 14px;
}
.hidden { display: none; }

.footer { padding: 32px 0; text-align: center; color: var(--text-muted); font-size: 13px; }
.footer-links { margin-top: 8px; }
.footer-links a { color: var(--text-muted); }

@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero { padding: 56px 0 48px; }
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #16141F;
    --bg-alt: #1D1A2B;
    --text: #F0EEFA;
    --text-muted: #9C97B8;
    --border: #322D4C;
  }
  .pricing-table { box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
  .success-message { background: #17301F; color: #6FCF97; }
}
