/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --purple: #7F77DD;
  --teal: #1D9E75;
  --coral: #F0997B;
  --ink: #2C2C2A;
  --cream: #F1EFE8;
  --white: #ffffff;
  --gray: #6B6B6A;
  --light-gray: #E8E6DF;
  --font: 'Inter', sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
}
.btn-primary:hover { background: #6b63c8; transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { color: var(--purple); }
.btn-outline {
  background: transparent;
  border-color: var(--purple);
  color: var(--purple);
}
.btn-outline:hover { background: var(--purple); color: var(--white); }
.btn-lg { padding: 14px 28px; font-size: 16px; border-radius: 10px; }
.btn-full { width: 100%; margin-top: 24px; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--light-gray);
  padding: 16px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 22px;
  font-weight: 800;
  color: var(--purple);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(160deg, #faf9f6 0%, #f0eeff 100%);
  padding: 100px 0 80px;
  text-align: center;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.badge {
  display: inline-block;
  background: var(--cream);
  color: var(--purple);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid #ddd9f8;
}
.hero h1 {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--ink);
  margin-bottom: 20px;
}
.accent { color: var(--purple); }
.hero-sub {
  font-size: 19px;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.section h2 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 18px;
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 48px;
}

/* ===== PROBLEM ===== */
.problem { background: var(--ink); }
.problem-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.problem h2 { color: var(--white); font-size: clamp(28px, 4vw, 40px); margin-bottom: 16px; }
.problem p { color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1.7; }

/* ===== SOLUTION ===== */
.solution { background: var(--cream); text-align: center; }
.solution h2 { max-width: 600px; margin: 0 auto 16px; }
.solution .section-sub { margin: 0 auto; }

/* ===== TEAM ===== */
.meet-the-team { background: var(--white); }
.meet-the-team h2 { margin-bottom: 48px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.helper-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.helper-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.helper-avatar {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 16px;
}
.helper-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}
.helper-role {
  font-size: 13px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}
.helper-card p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--cream); }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 48px;
}
.step { flex: 1; padding: 0 8px; }
.step-divider {
  width: 60px;
  height: 2px;
  background: var(--light-gray);
  margin-top: 28px;
  flex-shrink: 0;
}
.step-number {
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 12px;
  letter-spacing: 1px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ===== APPROVAL ===== */
.approval { background: var(--purple); text-align: center; }
.approval-inner { max-width: 600px; margin: 0 auto; }
.approval-icon { font-size: 40px; margin-bottom: 16px; }
.approval h2 { color: var(--white); margin-bottom: 16px; }
.approval p { color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.7; }

/* ===== PRICING ===== */
.pricing { background: var(--white); text-align: center; }
.pricing h2 { margin-bottom: 8px; }
.pricing .section-sub { margin: 0 auto 48px; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: left;
  position: relative;
  border: 2px solid transparent;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.pricing-featured {
  background: var(--ink);
  border-color: var(--purple);
  transform: scale(1.03);
}
.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }
.plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: white;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.plan-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--purple);
  margin-bottom: 8px;
}
.pricing-featured .plan-name { color: rgba(255,255,255,0.6); }
.plan-price {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 4px;
  color: var(--ink);
}
.pricing-featured .plan-price { color: var(--white); }
.plan-price span { font-size: 18px; font-weight: 500; color: var(--gray); letter-spacing: 0; }
.pricing-featured .plan-price span { color: rgba(255,255,255,0.5); }
.plan-desc { color: var(--gray); font-size: 14px; margin-bottom: 24px; }
.pricing-featured .plan-desc { color: rgba(255,255,255,0.6); }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { font-size: 15px; color: var(--ink); }
.pricing-featured .plan-features li { color: rgba(255,255,255,0.85); }
.pricing-featured .btn-primary { background: var(--teal); }
.pricing-featured .btn-primary:hover { background: #178a64; }

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(160deg, #f0eeff 0%, #faf9f6 100%);
  text-align: center;
}
.final-cta h2 { margin-bottom: 12px; }
.final-cta p { color: var(--gray); font-size: 18px; margin-bottom: 32px; }

/* ===== FOOTER ===== */
.footer { background: var(--ink); padding: 48px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.footer-brand .logo { color: rgba(255,255,255,0.9); }
.footer-brand p { color: rgba(255,255,255,0.4); font-size: 13px; margin-top: 4px; }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }
.footer-copy { color: rgba(255,255,255,0.3); font-size: 13px; width: 100%; text-align: center; margin-top: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links a:not(.btn) { display: none; }
  .steps { flex-direction: column; }
  .step-divider { width: 2px; height: 32px; margin: 0 0 0 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .pricing-featured { transform: scale(1); }
}
