.cs-site {
  --cs-accent: rgba(76, 134, 199, 0.14);
  --cs-accent-strong: rgba(76, 134, 199, 0.22);
}

.cs-section {
  position: relative;
  padding: 2.5rem 0 4rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .cs-section {
    padding: 3.5rem 0 6rem;
  }
}

.cs-section__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
}

.cs-hero {
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .cs-hero {
    margin-bottom: 3.5rem;
  }
}

.cs-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: var(--sh-text-base);
  font-weight: 500;
  color: var(--sh-primary);
  text-decoration: none;
  transition: color 0.2s;
}

.cs-back:hover {
  color: var(--sh-primary-dark);
}

.cs-title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--sh-foreground);
  max-width: none;
}

@media (min-width: 768px) {
  .cs-title {
    font-size: clamp(3rem, 5.5vw, 5rem);
  }
}

.cs-grid {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 900px) {
  .cs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }
}

.cs-panel {
  background: var(--sh-card);
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  padding: 1.5rem 1.75rem;
  box-shadow: 0 12px 32px rgba(5, 25, 45, 0.06);
  transition: border-color 0.25s, box-shadow 0.25s;
}

@media (min-width: 640px) {
  .cs-panel {
    padding: 2rem 2.25rem;
    border-radius: 1.125rem;
  }
}

.cs-panel:hover {
  border-color: rgba(76, 134, 199, 0.35);
  box-shadow: 0 20px 48px rgba(5, 25, 45, 0.08);
}

.cs-panel--results {
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--sh-primary);
  background: linear-gradient(135deg, var(--sh-card) 0%, rgba(76, 134, 199, 0.06) 100%);
}

.cs-panel__label {
  display: block;
  margin: 0 0 1.25rem;
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sh-primary-dark);
}

.cs-panel__label--sub {
  margin-top: 2rem;
}

.cs-panel__body {
  font-size: var(--sh-text-base);
  line-height: 1.7;
  color: var(--sh-muted);
  font-weight: 300;
}

.cs-panel__body p {
  margin: 0 0 1.125rem;
}

.cs-panel__body p:last-child {
  margin-bottom: 0;
}

.cs-panel__body ol {
  margin: 0.75rem 0 1.125rem;
  padding-left: 1.35rem;
}

.cs-panel__body li {
  margin-bottom: 0.5rem;
  padding-left: 0.25rem;
}

.cs-panel__body li::marker {
  color: var(--sh-primary);
  font-weight: 600;
}

.cs-panel__body strong {
  font-weight: 600;
  color: var(--sh-foreground);
}

.cs-footer {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .cs-footer {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 1.5rem;
    align-items: start;
  }
}

.cs-site blockquote.cs-quote,
.cs-quote {
  margin: 0;
  padding: 1.5rem 1.75rem;
  font-size: var(--sh-text-lg);
  line-height: 1.6;
  border: 1px solid rgba(76, 134, 199, 0.2);
  border-left: none;
  background: linear-gradient(145deg, rgba(76, 134, 199, 0.14) 0%, rgba(76, 134, 199, 0.06) 100%);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(5, 25, 45, 0.05);
  position: relative;
}

@media (min-width: 640px) {
  .cs-quote {
    padding: 2rem 2.25rem;
    font-size: var(--sh-text-xl);
    line-height: 1.55;
  }
}

.cs-quote::before {
  content: '\201C';
  position: absolute;
  top: 0.35rem;
  left: 0.85rem;
  font-family: 'Newsreader', Georgia, serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--sh-primary);
  opacity: 0.2;
  pointer-events: none;
}

.cs-quote p {
  margin: 0;
  position: relative;
  z-index: 1;
  font-family: 'Newsreader', Georgia, serif;
  font-size: inherit;
  font-style: italic;
  font-weight: 400;
  line-height: inherit;
  color: var(--sh-primary-dark);
}

.cs-compare {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.25rem 1.5rem;
  background: var(--sh-card);
  border: 1px solid var(--sh-border);
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(5, 25, 45, 0.04);
}

.cs-compare__row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--sh-border);
}

.cs-compare__row:not(.is-highlight) {
  padding-left: 6px;
}

.cs-compare__row:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.cs-compare__row.is-highlight {
  padding: 1rem 1.125rem;
  background: rgba(76, 134, 199, 0.1);
  border: 1px solid rgba(76, 134, 199, 0.18);
  border-radius: 0.625rem;
}

.cs-compare__label {
  font-size: var(--sh-text-base);
  font-weight: 600;
  color: var(--sh-foreground);
}

.cs-compare__row.is-highlight .cs-compare__label {
  color: var(--sh-primary);
}

.cs-compare__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 0.75rem;
  margin: 0;
}

.cs-compare__stat {
  margin: 0;
}

.cs-compare__stat dt {
  margin: 0 0 0.2rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-gray);
}

.cs-compare__stat dd {
  margin: 0;
  font-size: var(--sh-text-base);
  font-weight: 300;
  line-height: 1.3;
  color: var(--sh-muted);
  font-variant-numeric: tabular-nums;
}

.cs-compare__row.is-highlight .cs-compare__stat dd {
  font-weight: 600;
  color: var(--sh-foreground);
}

@media (min-width: 640px) {
  .cs-compare__row {
    display: grid;
    grid-template-columns: minmax(8rem, 1.25fr) 2.75fr;
    gap: 1rem 1.5rem;
    align-items: center;
    padding-bottom: 0.625rem;
  }

  .cs-compare__row.is-highlight {
    padding: 0.75rem 1rem;
  }

  .cs-compare__stat dt {
    font-size: 0.8125rem;
  }
}

.cs-cta-wrap {
  margin-top: 0.5rem;
}
