:root {
  --sfcc-bg: #f5f7fc;
  --sfcc-border: #d9e2f3;
  --sfcc-text: #111827;
  --sfcc-muted: #606b85;
  --sfcc-primary: #33408a;
  --sfcc-primary-soft: #e9edff;
  --sfcc-alert-bg: #eef3ff;
  --sfcc-alert-border: #c7d6ff;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Helvetica, Arial, sans-serif;
  background: var(--sfcc-bg);
  color: var(--sfcc-text);
}

.sfcc-page { min-height: 100vh; }
.sfcc-container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
section { padding: 74px 0; }

.sfcc-heading { text-align: center; }

.sfcc-heading h1 {
  margin: 0;
  line-height: 1.1;
  font-weight: 700;
  color: #121b2f;
  font-size: clamp(38px, 6vw, 72px);
}

.sfcc-heading h1 span { color: var(--sfcc-primary); }

.sfcc-heading p {
  margin: 14px auto 0;
  max-width: 920px;
  color: var(--sfcc-muted);
  font-size: 18px;
  line-height: 1.55;
}

.sfcc-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #ccdaf8;
  border-radius: 999px;
  background: var(--sfcc-primary-soft);
  color: var(--sfcc-primary);
  padding: 8px 14px;
  margin-bottom: 20px;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.sfcc-hero {
  padding-top: 92px;
  padding-bottom: 64px;
}

.sfcc-content {
  padding-top: 26px;
}

.sfcc-card {
  border: 1px solid #e0e6f3;
  background: #f7f9fd;
  border-radius: 20px;
  padding: 24px;
}

.sfcc-card + .sfcc-card {
  margin-top: 20px;
}

.sfcc-card h2 {
  margin: 0 0 8px;
  font-size: 34px;
  line-height: 1.2;
  font-weight: 600;
  color: #121b2f;
}

.sfcc-card p {
  margin: 0;
  color: #5f6a84;
  font-size: 16px;
  line-height: 1.6;
}

.sfcc-card p + p {
  margin-top: 10px;
}

.sfcc-card ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.sfcc-card li {
  color: #5f6a84;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 6px;
}

.sfcc-card-alert {
  background: var(--sfcc-alert-bg);
  border-color: var(--sfcc-alert-border);
}

.sfcc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.sfcc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .sfcc-heading p { font-size: 16px; }
  .sfcc-card h2 { font-size: 30px; }
}

@media (max-width: 760px) {
  section { padding: 56px 0; }

  .sfcc-hero {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .sfcc-card {
    padding: 20px;
  }

  .sfcc-heading p,
  .sfcc-card p,
  .sfcc-card li { font-size: 16px; }
  .sfcc-card h2 { font-size: 28px; }
}
