/* ========================================
   WHAT YOU GET SECTION
   ======================================== */

.what-get-section {
  background: var(--bg-light);
}

.what-get-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.what-get-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 30px 28px 26px;
  border-radius: 34px 34px 44px 44px;
  background: linear-gradient(180deg, #f6faff 0%, #eef5ff 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
}

.what-get-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
}

.what-get-title {
  margin: 0 0 10px;
  color: rgba(15, 26, 43, 0.95);
  font-size: 2.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.what-get-subtitle {
  margin: 0;
  color: rgba(15, 26, 43, 0.72);
  font-size: 1.06rem;
  line-height: 1.6;
  font-weight: 500;
}

.what-get-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.what-get-card {
  background: #ffffff;
  border: 1px solid rgba(18,32,51,0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(18,32,51,0.07);
}

.what-get-card__media {
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #f3f7fd;
}

.what-get-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.what-get-card__media--light {
  background: linear-gradient(180deg, #f7fbff 0%, #e9f2ff 100%);
}

.what-get-card__media--light img {
  object-fit: contain;
  object-position: center bottom;
  padding: 8px 16px 0;
  filter: drop-shadow(0 14px 22px rgba(18,32,51,0.12));
}

.what-get-card__body {
  position: relative;
  padding: 38px 18px 16px;
  text-align: center;
}

.what-get-card__icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  margin: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #4a8cff;
  border: 1px solid rgba(74,140,255,0.14);
  box-shadow: 0 10px 22px rgba(18,32,51,0.12);
  z-index: 2;
}

.what-get-card__icon i {
  font-size: 22px;
}

.what-get-card:first-child .what-get-card__icon i {
  transform: rotate(90deg);
}

.what-get-card__title {
  margin: 0 0 6px;
  color: #22324b;
  font-size: 1.36rem;
  line-height: 1.14;
  font-weight: 800;
}

.what-get-card__subcopy {
  margin: 0;
  color: rgba(59,77,106,0.78);
  font-size: 0.94rem;
  line-height: 1.55;
  font-weight: 500;
  min-height: 72px;
}

.what-get-card__rule {
  width: 34px;
  height: 3px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #7eb1ff 0%, #c9deff 100%);
}

@media (max-width: 980px) {
  .what-get-panel {
    padding: 26px 18px 20px;
    border-radius: 28px 28px 36px 36px;
  }

  .what-get-grid {
    grid-template-columns: 1fr;
  }

  .what-get-card__media {
    aspect-ratio: 1.7 / 1;
  }

  .what-get-card__subcopy {
    min-height: 0;
  }
}

@media (max-width: 768px) {
  .what-get-title {
    font-size: 2.15rem;
  }

  .what-get-card__title {
    font-size: 1.24rem;
  }
}

@media (max-width: 560px) {
  .what-get-wrap {
    padding: 0 16px;
  }

  .what-get-panel {
    padding: 22px 14px 16px;
    border-radius: 24px 24px 30px 30px;
  }

  .what-get-title {
    font-size: 1.95rem;
  }

  .what-get-subtitle {
    font-size: 0.94rem;
  }

  .what-get-card__media--light img {
    padding: 6px 10px 0;
  }

  .what-get-card__body {
    padding: 34px 16px 15px;
  }

  .what-get-card__icon {
    width: 52px;
    height: 52px;
  }

  .what-get-card__icon i {
    font-size: 20px;
  }

  .what-get-card__subcopy {
    font-size: 0.88rem;
    min-height: 0;
  }
}