:root {
  --mai-purple: #a024ea;
  --mai-orange: #fe4d01;
  --mai-cream: #f6f4ef;
  --mai-text: #1f1f1f;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--mai-text);
  background: #fff;
}

.mai-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.mai-header {
  background: #fff;
  border-bottom: 1px solid #e8e4de;
  padding: 0.75rem 0;
}

.mai-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--mai-text);
  font-weight: 600;
  font-size: 1.25rem;
}

.mai-logo {
  height: 36px;
  width: 36px;
  flex-shrink: 0;
}

.mai-brand:hover {
  text-decoration: none;
  color: var(--mai-text);
}

.mai-brand-accent {
  color: var(--mai-purple);
}

.mai-nav-link {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
}

.mai-nav-link:hover {
  color: var(--mai-purple);
}

.mai-main {
  flex: 1;
}

.mai-hero {
  background: linear-gradient(135deg, #f6f4ef 0%, #fff 50%, #f9f0ff 100%);
  padding: 4rem 0 3rem;
}

.mai-hero h1 {
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.mai-section-card {
  border: 1px solid #e8e4de;
  border-radius: 0.75rem;
  padding: 1rem;
  height: 100%;
}

.mai-testimonial-card {
  border: 1px solid #e8e4de;
  border-radius: 0.75rem;
  background: #fff;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 12px rgba(35, 31, 32, 0.06);
}

.mai-testimonial-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.mai-testimonial-card p {
  color: #6c757d;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.mai-faq .accordion-item {
  border: 1px solid #e8e4de;
  border-radius: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.75rem;
  background: #fff;
}

.mai-faq .accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--mai-text);
  background: #fff;
  box-shadow: none;
}

.mai-faq .accordion-button:not(.collapsed) {
  color: var(--mai-purple);
  background: #fff;
}

.mai-faq .accordion-button:focus {
  box-shadow: none;
}

.mai-testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mai-purple), var(--mai-orange));
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mai-step-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mai-purple);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-bottom: 1rem;
}

.mai-bg-cream {
  background: var(--mai-cream);
}

.mai-bg-lavender {
  background: #f9f0ff;
}

.mai-footer {
  background: #212529;
  color: #fff;
  padding: 1.5rem 0;
  margin-top: auto;
}

.mai-footer a {
  color: #c27ee7;
  text-decoration: none;
}

.mai-footer a:hover {
  text-decoration: underline;
}

.mai-legal-hero {
  background: linear-gradient(135deg, #f6f4ef 0%, #fff 50%, #f9f0ff 100%);
  padding: 2.5rem 0;
  text-align: center;
}

.mai-legal-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.mai-legal-content h2 {
  font-size: 1.1rem;
  border-bottom: 1px solid #e8e4de;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.btn-mai-primary {
  background: var(--mai-purple);
  border-color: var(--mai-purple);
  color: #fff;
}

.btn-mai-primary:hover {
  background: #8a1fc8;
  border-color: #8a1fc8;
  color: #fff;
}

.text-mai-primary {
  color: var(--mai-purple) !important;
}
