:root {
  --bg: #ead7c0;
  --card: #e5cfb6;
  --text: #121212;
  --muted: #f03f78;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--text);
}

.intel-section {
  min-height: 100vh;
  max-width: 1140px;
  margin: 0 auto;
  padding: 8px 16px 22px;
  position: relative;
}

h1 {
  margin: 0;
  text-align: center;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.1;
  font-weight: 600;
}

.cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 22px;
}

.card {
  background: color-mix(in srgb, var(--card), #ffffff 8%);
  border-radius: 14px;
  min-height: 350px;
  padding: 24px 26px;
}

.step {
  font-size: 24px;
  font-weight: 600;
  color: var(--muted);
}

.card h2 {
  margin: 6px 0 0;
  font-size: clamp(18px, 1.7vw, 32px);
  font-weight: 500;
  line-height: 1.25;
}

.mock {
  margin-top: 50px;
  border-radius: 12px;
  opacity: 0.96;
}

.mock-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 11px;
}

.mock-1 button {
  background: #a9b3c4;
  color: #f0ece8;
  border: 0;
  font-weight: 600;
  font-size: 12px;
  padding: 8px 12px;
  border-radius: 5px;
}

.list {
  background: #efe0cd;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(78, 53, 26, 0.16);
  padding: 7px 10px;
  width: 102px;
}

.list p {
  margin: 7px 0;
  font-size: 12px;
  font-weight: 600;
}

.mock-2 .logos {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.logos span {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f7e9d7;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}

.mock-2 ul {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.44;
}

.faded {
  opacity: 0.2;
}

.mock-3 {
  position: relative;
  height: 192px;
}

.chart {
  position: absolute;
  inset: 8px 16px 34px;
  background: linear-gradient(180deg, #ecdcc8, #e7d2bc);
  border-radius: 10px;
}

.report {
  position: absolute;
  right: 4px;
  bottom: 0;
  width: 168px;
  padding: 12px;
  border-radius: 10px;
  background: #f2e5d5;
  box-shadow: 0 8px 20px rgba(64, 43, 24, 0.2);
}

.report h3 {
  margin: 0;
  color: #1492d5;
  font-size: 12px;
}

.donut {
  margin-top: 8px;
  width: 68px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(#2a9fd6 0 48%, #db305f 48% 78%, #2847a8 78% 100%);
  position: relative;
}

.donut::after {
  content: "";
  position: absolute;
  inset: 14px;
  background: #f2e5d5;
  border-radius: 50%;
}

.cta {
  margin: 38px auto 0;
  display: flex;
  width: fit-content;
  text-decoration: none;
  color: #fff6ed;
  background: #101010;
  padding: 16px 26px;
  border-radius: 14px;
  font-size: 30px;
  font-weight: 500;
}

.chat {
  position: fixed;
  right: 12px;
  bottom: 12px;
  border: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #050505;
  color: #f5ecdf;
  font-size: 32px;
}

@media (max-width: 980px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    min-height: auto;
  }

  .cta {
    font-size: 24px;
  }
}
