* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-main: #1EDAF2;
  --primary-dark: #34606D;
  --primary-light: #d4faff;
  --paper: #f7f9fc;
  --yellow: #f1e364;
  --red: #ff7495;
  --green: #64f1c7;
  --light-green: #c6f6e8;
  --light-yellow: #fffbcf;
  --light-red: #ffceda;
}

body {
  font-family: Poppins, sans-serif;
  color: var(--primary-dark);
  background: var(--paper);
  line-height: 1.5;
}

.header {
  position: sticky;
  top: 0;
  background: var(--paper);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 9;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.button {
  border: none;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  font-size: 0.8rem;
}

.filled-button {
  background-color: var(--primary-main);
  color: white;
}

.line-button {
  background-color: transparent;
  color: var(--primary-dark);
  border: 2px solid var(--primary-dark);
}

.combined-button {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 16px;
}

.section {
  margin: 40px 0;
}

.filled {
  background-color: var(--primary-main);
}

.source {
  color: var(--primary-main);
  font-size: 12px;
  font-style: italic;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 3rem;
  font-weight: 700;
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
}

h3 {
  font-size: 1.2rem;
  margin-top: 2px;
  font-weight: 500;
  ;
}

i {
  margin: 0 8px;
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px
}

.text-main-color {
  color: var(--primary-main);
}

.red-bg {
  background-color: var(--red);
}

.green-bg {
  background-color: var(--green);
}

.yellow-bg {
  background-color: var(--yellow);
}

.blue-bg {
  background-color: var(--primary-main);
}

.light-red-bg {
  background-color: var(--light-red);
}

.light-green-bg {
  background-color: var(--light-green);
}

.light-yellow-bg {
  background-color: var(--light-yellow);
}

.light-blue-bg {
  background-color: var(--primary-light);
}

.paper-bg {
  background-color: var(--paper);
}

.subtitle {
  color: #555;
  font-weight: 400;
}

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

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin-top: 20px;
}

.card {
  position: relative;
  display: flex;
  padding: 16px;
  border-radius: 40px;
  box-shadow: 5px 15px 30px #32444926
}

.direction-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.circle-card {
  border-radius: 50%;
  box-shadow: 5px 15px 30px #32444926;
  width: 50px;
  height: 50px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}

.two-col .card {
  margin-bottom: 30px;
}

.circle-icon {
  position: absolute;
  ;
  width: 60px;
  height: 60px;
  top: -30px;
  right: 40px;
}

.box {
  padding: 24px 32px;
  border-radius: 40px;
}

.minimal-box {
  padding: 16px 8px;
}

ul {
  margin-top: 10px;
  padding-left: 16px;
}

hr {
  margin: 24px 0;
  border: none;
  border-top: 1px solid #ddd;
}

.box-spacer {
  width: 40px;
  height: 4px;
  background-color: var(--primary-main);
  margin: 16px auto;
}

.spacer-left-mobile {
  margin-left: 16px;
}

.box-left-spacer {
  width: 24px;
  height: 4px;
  background-color: var(--primary-main);
  margin: 8px 0;
}

.progress {
  position: relative;
  min-width: 100px;
  height: 100px;
  width: 100px;
  background-color: var(--paper);
  margin: 0 8px;
}

.progress svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.progress circle {
  background-color: var(--primary-main);
  fill: none;
  stroke-width: 8;
}

.progress .bg {
  stroke: var(--paper);
}

.progress .meter {
  stroke-linecap: round;
  stroke-dasharray: 283;
  stroke-dashoffset: 283;
  transition: stroke-dashoffset 1s ease;
}

.yellow-stroke {
  stroke: var(--yellow);
}

.green-stroke {
  stroke: var(--green);
}

.red-stroke {
  stroke: var(--red);
}

.progress .value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--primary-dark);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  margin-top: 24px;
}

.comparison-table th {
  background-color: var(--primary-dark);
  color: white;
  padding: 8px;
  text-align: center;
  border: 1px solid #475569;
  font-size: 0.8rem;
}

.comparison-table th.highlight-col {
  background-color: var(--primary-main);
  border-color: var(--primary-main);
}

.comparison-table td {
  padding: 8px;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.comparison-table td:first-child {
  text-align: left;
  font-size: 0.8rem;
}

.highlight-cell {
  background-color: #ecfdf5;
}

.icon-check {
  color: var(--green);
}

.icon-cross {
  color: var(--red);
}

.icon-partial {
  color: #64748b;
}

.legend {
  margin-top: 20px;
  font-size: 0.85rem;
  color: #64748b;
}

.legend span {
  margin-right: 20px;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background-color: var(--primary-light);
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 80px;
  }

  .four-col {
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;
  }

  .two-col {
    grid-template-columns: 1fr 1fr;
  }

  .progress {
    margin: -64px auto 10px;
  }

  .card {
    flex-direction: column;
  }

  .circle-card {
    margin-top: -40px;
    margin-bottom: 8px;
  }

  .circle-icon {
    top: 10px
  }

  .spacer-left-mobile {
    margin-left: 0;
  }

  .comparison-table th {
    padding: 8px 16px;
    font-size: 1rem;
  }

  .comparison-table td {
    padding: 8px 16px;
  }

  .comparison-table td:first-child {
    font-size: 1rem;
  }
}