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

:root {
  --purple: #6C63FF;
  --purple-light: #a29bfe;
  --yellow: #FFD93D;
  --pink: #FF6B6B;
  --green: #6BCB77;
  --bg: #F4F6FF;
  --text: #2d3436;
  --gray: #b2bec3;
  --white: #ffffff;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(108,99,255,0.12);
}

body {
  font-family: 'Nunito', 'Arial Rounded MT Bold', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* HEADER */
.header {
  background: var(--white);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--purple);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span { color: var(--yellow); }

.nav { display: flex; gap: 20px; align-items: center; }

.btn {
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--purple);
  color: white;
}

.btn-primary:hover { background: #574fd6; transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover { background: var(--purple); color: white; }

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
}

.btn-yellow:hover { background: #f7c93e; transform: translateY(-2px); }

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 80px 60px;
  gap: 40px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text h1 .accent { color: var(--purple); }
.hero-text h1 .accent2 { color: var(--pink); }

.hero-text p {
  font-size: 1.2rem;
  color: #636e72;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-image {
  font-size: 160px;
  line-height: 1;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* FEATURES */
.features {
  padding: 60px 80px;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: var(--text);
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: transform 0.2s;
}

.card:hover { transform: translateY(-4px); }
.card .icon { font-size: 2.5rem; margin-bottom: 12px; }
.card h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 8px; }
.card p { color: #636e72; font-size: 0.95rem; }

/* HOW IT WORKS */
.steps {
  padding: 60px 80px;
}

.steps-list {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 200px;
  text-align: center;
}

.step-num {
  width: 52px; height: 52px;
  background: var(--purple);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
}

.step h4 { font-weight: 800; }
.step p { color: #636e72; font-size: 0.9rem; }

.step-arrow { font-size: 1.5rem; color: var(--purple-light); align-self: center; }

/* CTA */
.cta {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: white;
  text-align: center;
  padding: 80px 40px;
}

.cta h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 16px; }
.cta p { font-size: 1.1rem; margin-bottom: 32px; opacity: 0.9; }

/* FOOTER */
.footer {
  background: var(--text);
  color: white;
  text-align: center;
  padding: 24px;
  font-size: 0.9rem;
  opacity: 0.9;
}

/* FORMS */
.form-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.form-box {
  background: white;
  border-radius: var(--radius);
  padding: 40px;
  width: 100%;
  max-width: 480px;
  box-shadow: var(--shadow);
}

.form-box h2 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-align: center;
}

.form-box .subtitle {
  text-align: center;
  color: #636e72;
  margin-bottom: 28px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.2s;
  background: var(--bg);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--purple);
}

.form-box .btn { width: 100%; padding: 14px; font-size: 1.1rem; margin-top: 8px; }

.error-msg {
  background: #ffe0e0;
  color: var(--pink);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-weight: 600;
  display: none;
}

.success-msg {
  background: #e0ffe6;
  color: #27ae60;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 16px;
  font-weight: 600;
  display: none;
}

/* STEPS PROGRESS */
.steps-progress {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  justify-content: center;
}

.steps-progress .sp {
  display: flex;
  align-items: center;
  gap: 0;
}

.steps-progress .sp-dot {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: white;
}

.steps-progress .sp.active .sp-dot { background: var(--purple); }
.steps-progress .sp.done .sp-dot { background: var(--green); }

.steps-progress .sp-line {
  width: 60px; height: 3px;
  background: #e0e0e0;
}

.steps-progress .sp.done + .sp .sp-line,
.steps-progress .sp.done .sp-line { background: var(--green); }

/* PAYMENT */
.payment-box {
  background: linear-gradient(135deg, #f8f7ff, #fff);
  border: 2px dashed var(--purple-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin: 20px 0;
}

.price { font-size: 2.5rem; font-weight: 900; color: var(--purple); }
.price-label { color: #636e72; font-size: 0.9rem; }

@media (max-width: 768px) {
  .hero { flex-direction: column; padding: 40px 24px; text-align: center; }
  .hero-text h1 { font-size: 2rem; }
  .hero-image { font-size: 100px; }
  .features, .steps { padding: 40px 24px; }
  .header { padding: 0 20px; }
}
