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

.what-get-section {
  background: #ffffff;
}

.what-get-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--section-pad-x);
}

.what-get-panel {
  max-width: 1120px;
  margin: 0 auto;
  padding: 10px 0 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.what-get-header {
  text-align: center;
  max-width: 1120px;
  margin: 0 auto var(--space-section-elements);
}

.what-get-title {
  margin: 0 auto var(--space-heading-subtext);
  max-width: 900px;
  width: auto;
  color: rgba(15, 26, 43, 0.95);
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: var(--type-section-title-weight);
  text-wrap: balance;
}

.what-get-subtitle {
  margin: 0;
  color: rgba(15, 26, 43, 0.72);
  font-size: var(--type-section-subtitle-size);
  line-height: var(--type-section-subtitle-line);
  font-weight: var(--type-section-subtitle-weight);
}

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

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

.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: var(--type-card-title-size);
  line-height: var(--type-card-title-line);
  font-weight: var(--type-card-title-weight);
}

.what-get-card__subcopy {
  margin: 0;
  color: rgba(59,77,106,0.78);
  font-size: var(--type-body-size);
  line-height: var(--type-body-line);
  font-weight: var(--type-body-weight);
  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: 8px 0 0;
    border-radius: 0;
  }

  .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 {
    width: auto;
    font-size: var(--type-section-title-size-mobile);
  }

  .what-get-card__title {
    font-size: var(--type-card-title-size-mobile);
  }
}

@media (max-width: 560px) {
  .what-get-wrap {
    padding: 0 var(--section-pad-x-mobile);
  }

  .what-get-panel {
    padding: 6px 0 0;
    border-radius: 0;
  }

  .what-get-title {
    width: auto;
    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;
  }
}