body {
  background-color: #f6f1eb;
}

.hero {
  background: radial-gradient(circle at top left, #ffe1c6, #f6f1eb 60%),
    radial-gradient(circle at bottom right, #cce6e8, #f6f1eb 55%);
  min-height: 80vh;
  color: #1f1f1f;
}

.hero-content {
  padding: 48px 0 64px;
}

.hero h1 {
  font-weight: 700;
  letter-spacing: -0.5px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.preview {
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(11, 79, 108, 0.12);
}

.preview-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.preview-title {
  font-weight: 600;
  color: #0b4f6c;
}

.preview-chip {
  background: #ffe7c7;
  color: #7a4b1a;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.preview-value {
  font-size: 36px;
  font-weight: 700;
  color: #0b4f6c;
  margin-bottom: 6px;
}

.preview-sub {
  color: #5a5a5a;
  margin-bottom: 18px;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.preview-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f6f1eb;
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.preview-item i {
  color: #0b4f6c;
}

.stats {
  margin-top: 16px;
  background: #ffffff;
  border-radius: 16px;
}

.icon-block {
  text-align: center;
  padding: 16px;
}

.icon-block i {
  color: #0b4f6c;
}

.gradient {
  background: linear-gradient(120deg, #f7f1eb, #fff4e8);
}

@media (max-width: 600px) {
  .hero {
    min-height: auto;
  }

  .preview-grid {
    grid-template-columns: 1fr;
  }
}
