﻿:root {
  --primary: #5A4AE3;
  --accent: #00D2C5;
  --background: #F4F7FA;
  --card-bg: #fff;
  --text-primary: #1B1F2B;
  --text-muted: #6C7A89;
  --error: #FF6B6B;
  --border-radius: 1.2rem;
  --box-shadow: 0 2px 16px rgba(90, 74, 227, 0.08);
  --transition: 0.18s cubic-bezier(.4,0,.2,1);
}

body {
  background: var(--background);
  color: var(--text-primary);
  font-family: 'Nunito', 'Segoe UI', Arial, sans-serif;
  margin: 0;
}

.hero-section {
  background: var(--card-bg);
  color: var(--text-primary);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2.5rem auto 2rem auto;
  max-width: 700px;
  padding: 3rem 2rem;
}

.hero-section h1 {
  color: var(--primary);
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-section .text-accent {
  color: var(--accent);
}

.btn-accent {
  background: var(--accent);
  color: #fff !important;
  border: none;
  border-radius: 0.7rem;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0,210,197,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.btn-accent:hover, .btn-accent:focus {
  background: #00b3a6;
  box-shadow: 0 4px 16px rgba(0,210,197,0.16);
}

.btn-outline-primary {
  border: 2px solid var(--primary);
  color: var(--primary) !important;
  background: transparent;
  border-radius: 0.7rem;
  font-weight: 700;
  transition: border var(--transition), color var(--transition), background var(--transition);
}
.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--primary);
  color: #fff !important;
}

.section-divider {
  height: 32px;
  background: none;
}

.features-section,
.brand-story-section,
.steps-section,
.testimonial-section,
.cta-section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2rem auto;
  max-width: 900px;
  padding: 2.5rem 2rem;
}

.brand-story-section-alt,
.steps-section-alt {
  background: #eafcfb; /* very light accent */
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin: 2rem auto;
  max-width: 900px;
  padding: 2.5rem 2rem;
}

.cta-section-alt {
  background: #edeaff; /* very light primary */
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2.5rem;
}

.section-title {
  color: var(--primary);
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.feature-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(90,74,227,0.07);
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(0,210,197,0.18);
  transform: translateY(-4px) scale(1.03);
}

.feature-icon, .step-icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 0.7rem;
}

.steps-section .step-icon.text-primary { color: var(--primary); }
.steps-section .step-icon.text-accent { color: var(--accent); }
.steps-section .step-icon.text-success { color: #22c55e; }
.steps-section .step-icon.text-info { color: #3b82f6; }

.badge.bg-success { background: #22c55e; }
.badge.bg-primary { background: var(--primary); }
.badge.bg-accent { background: var(--accent); color: #fff; }
.badge.bg-info { background: #3b82f6; color: #fff; }

.feature-icon-bg,
.step-icon-bg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 2rem;
  box-shadow: 0 2px 8px rgba(0,210,197,0.08);
}
.accent-bg { background: var(--accent); color: #fff; }
.primary-bg { background: var(--primary); color: #fff; }

.badge-pill {
  border-radius: 2em;
  padding: 0.5em 1.2em;
  font-weight: 600;
  font-size: 1em;
  box-shadow: 0 1px 4px rgba(90,74,227,0.07);
}

.testimonial-card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 12px rgba(90,74,227,0.07);
}

.testimonial-quote {
  color: var(--primary);
  font-size: 1.15rem;
  font-style: italic;
}

.cta-section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 2.5rem;
}

.cta-section h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 800;
}

.btn-link.text-primary {
  color: var(--primary) !important;
  font-weight: 600;
}

.rounded-section {
  border-radius: var(--border-radius);
}

@media (max-width: 900px) {
  .hero-section, .features-section, .brand-story-section, .steps-section, .testimonial-section, .cta-section {
    max-width: 98vw;
    padding: 1.5rem 0.5rem;
  }
  .section-title { font-size: 1.5rem; }
  .hero-section h1 { font-size: 2rem; }
}
