* {
  box-sizing: border-box;
}


.support {
  padding: 100px 24px;
}

.support-container {
  max-width: 1200px;
  margin: 0 auto;
}

.support-header {
  text-align: center;
  margin-bottom: 56px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
}

.support-header h2 {
  font-size: 40px;
  font-weight: 600;
  max-width: 900px;
  margin: 16px auto 0;
}

.support-tabs {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 64px;
}

.support-tabs button {
  background: none;
  border: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  padding-bottom: 12px;
  border-bottom: 2px solid transparent;
}

.support-tabs button.active {
  border-color: #000;
}

.support-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  width: 69%;
  margin: 0 auto;
}
@media (min-width: 768px) and (max-width: 1480px) {
.support-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
}

@media (max-width: 768px) {
.support-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}
}

.support-text h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.support-text ul {
  padding-left: 20px;
  margin-bottom: 32px;
}

.support-text li {
  margin-bottom: 12px;
  font-size: 15px;
}

.cta {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid #000;
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.support-visual {
border-radius: 16px;
    padding: 32px;
    height: 498px;
    /* background-size: contain; */
    background-repeat: no-repeat;
    transition: background-image 0.3s ease;
    background-size: cover;
}


.visual-card {
  background: #fff;
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 16px;
  width: fit-content;
}

.visual-card.small {
  margin-left: 40px;
}

.visual-card span {
  font-size: 12px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: -8px;
  border: 2px solid #fff;
}

@media (max-width: 900px) {
  .support-content {
    grid-template-columns: 1fr;
  }

  .support-tabs {
    flex-wrap: wrap;
    gap: 24px;
  }
}


.pastel-gradient {
  background: linear-gradient(135deg, #eef2ff, #fdf2f8);
}
