/**
 * Meistersohle Landing Page Styles
 *
 * Palette:
 *   Background : Cloud Dancer #F0EEE9  (Pantone COTY 2026)
 *   Primary    : Meistersohle Purple #9b51e0
 *   Accent     : Meistersohle Cyan   #0693e3
 *   Text       : Near-black          #2B2B2B
 */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Reset & base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: #F0EEE9;
  color: #2B2B2B;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Header ───────────────────────────────────────────── */
.ms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 64px;
  background: #F0EEE9;
  border-bottom: 1px solid #D8D4CC;
  position: sticky;
  top: 0;
  z-index: 100;
}

.ms-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ms-logo-mark {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #9b51e0 0%, #0693e3 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.ms-logo-text {
  font-weight: 700;
  font-size: 17px;
  color: #2B2B2B;
  letter-spacing: -0.3px;
}

.ms-logo-sub {
  font-size: 11px;
  font-weight: 400;
  color: #7A7A7A;
  display: block;
  line-height: 1;
  margin-top: 1px;
}

.ms-header-cta {
  background: #9b51e0;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}
.ms-header-cta:hover { background: #8a3fd4; }

/* ── Hero ─────────────────────────────────────────────── */
.ms-hero {
  padding: 64px 24px 56px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.ms-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(155, 81, 224, 0.10);
  color: #9b51e0;
  border: 1px solid rgba(155, 81, 224, 0.25);
  border-radius: 9999px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.ms-hero-badge svg { flex-shrink: 0; }

.ms-hero h1 {
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: #2B2B2B;
  margin-bottom: 16px;
}

.ms-hero h1 span {
  background: linear-gradient(135deg, #9b51e0 0%, #0693e3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ms-hero p {
  font-size: 17px;
  color: #555555;
  margin-bottom: 32px;
  line-height: 1.65;
}

.ms-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ms-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #9b51e0;
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 16px 36px;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(155, 81, 224, 0.35);
}
.ms-btn-primary:hover {
  background: #8a3fd4;
  transform: translateY(-1px);
}
.ms-btn-primary:active { transform: translateY(0); }

.ms-hero-note {
  font-size: 13px;
  color: #7A7A7A;
}

/* ── Trust bar ────────────────────────────────────────── */
.ms-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0;
  border-top: 1px solid #D8D4CC;
  border-bottom: 1px solid #D8D4CC;
  background: #E8E5DF;
}

.ms-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 500;
  color: #2B2B2B;
  border-right: 1px solid #D8D4CC;
}
.ms-trust-item:last-child { border-right: none; }

.ms-trust-icon {
  width: 20px;
  height: 20px;
  color: #9b51e0;
  flex-shrink: 0;
}

/* ── Section wrapper ──────────────────────────────────── */
.ms-section {
  padding: 64px 24px;
  max-width: 720px;
  margin: 0 auto;
}

.ms-section-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #9b51e0;
  margin-bottom: 12px;
}

.ms-section-title {
  font-size: clamp(22px, 4.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 40px;
  line-height: 1.25;
}

/* ── Steps ────────────────────────────────────────────── */
.ms-steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.ms-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.ms-step-num {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #9b51e0, #0693e3);
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(155, 81, 224, 0.30);
}

.ms-step-body h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ms-step-body p {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

/* ── Expert card ──────────────────────────────────────── */
.ms-expert {
  background: #fff;
  border: 1px solid #D8D4CC;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: 0 4px 16px rgba(43, 43, 43, 0.07);
}

.ms-expert-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #9b51e0 0%, #0693e3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.ms-expert-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.ms-expert-title {
  font-size: 13px;
  color: #9b51e0;
  font-weight: 500;
  margin-bottom: 10px;
}

.ms-expert-quote {
  font-size: 14px;
  color: #555555;
  line-height: 1.65;
  font-style: italic;
}

/* ── Divider ──────────────────────────────────────────── */
.ms-divider {
  height: 1px;
  background: #D8D4CC;
  margin: 0 24px;
}

/* ── Final CTA ────────────────────────────────────────── */
.ms-cta-section {
  padding: 64px 24px 80px;
  text-align: center;
  background: linear-gradient(180deg, #F0EEE9 0%, #E8E5DF 100%);
}

.ms-cta-section h2 {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.ms-cta-section p {
  font-size: 16px;
  color: #555555;
  margin-bottom: 32px;
}

.ms-btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #9b51e0 0%, #0693e3 100%);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: 17px 40px;
  font-size: 17px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(155, 81, 224, 0.38);
}
.ms-btn-accent:hover { opacity: 0.92; transform: translateY(-1px); }
.ms-btn-accent:active { transform: translateY(0); }

/* ── Footer ───────────────────────────────────────────── */
.ms-footer {
  border-top: 1px solid #D8D4CC;
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #7A7A7A;
  background: #E8E5DF;
}
.ms-footer a { color: #9b51e0; }
.ms-footer a:hover { text-decoration: underline; }

/* ── Mobile tweaks ────────────────────────────────────── */
@media (max-width: 480px) {
  .ms-trust-item { padding: 12px 16px; font-size: 12px; }
  .ms-expert { flex-direction: column; }
  .ms-expert-avatar { width: 52px; height: 52px; font-size: 22px; }
}
