/* v8: institution benefits and four steps to an informed trial decision. */

.benefits-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 24px 28px;
  border: 1px solid rgba(155, 74, 5, .2);
  border-radius: 20px;
  background: #fff8ec;
}
.benefits-preview p {
  margin: 0;
  color: var(--petrol);
  font-size: 1.0625rem;
  line-height: 1.55;
}
.benefits-preview strong { font-weight: 700; }
.button--benefits {
  flex: 0 0 auto;
  border-color: #ba6a1b;
  color: var(--petrol-deep);
  background: #fffdfa;
  font-size: 1rem;
}
.button--benefits:hover { background: #ffefd7; }

.benefits { background: #f4f5f1; }
.benefits .section-heading > p, .start-heading > p {
  font-size: 1.0625rem;
  line-height: 1.6;
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.benefit-card {
  min-width: 0;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, #fff, #fafbf8);
}
.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  border-radius: 17px;
  color: var(--petrol);
  background: var(--mist);
}
.benefit-card__icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.benefit-card h3 {
  margin: 0 0 12px;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}
.benefit-card p, .benefits__arrangement p, .start-step p, .start-contact p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.6;
  font-weight: 500;
}
.benefits__arrangement {
  margin-top: 28px;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--orange);
}
.benefits__arrangement p + p { margin-top: 14px; }
.benefits__arrangement strong { color: var(--ink); font-weight: 700; }
.benefits__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 30px;
  margin-top: 30px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  color: var(--petrol);
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(18, 62, 64, .35);
  text-underline-offset: 5px;
}
.text-link:hover { text-decoration-color: var(--orange-deep); }
.text-link:focus-visible, .button--benefits:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

.start-heading { position: relative; }
.start-heading h2 { max-width: 720px; }
.start-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.start-step {
  min-width: 0;
  padding: 28px 30px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7f9f5;
}
.start-step__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.start-step__head > span {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(18, 62, 64, .2);
  border-radius: 50%;
  color: var(--petrol);
  background: #fff;
  font-size: 1rem;
  line-height: 1;
  font-weight: 800;
}
.start-step h3 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.35;
  font-weight: 700;
}
.start-step--test { border-color: #b4cbc1; background: #eaf0eb; }
.start-step--test .start-step__head > span {
  color: var(--petrol-deep);
  background: var(--orange);
  border-color: transparent;
}
.start-contact {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin: 28px 0 44px;
}
.start-contact strong { color: var(--ink); font-weight: 700; }
.start-contact .button { flex: 0 0 auto; }
.trial-card { padding: 42px; gap: 38px; }
.trial-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.trial-card__main > p { font-size: 1.0625rem; line-height: 1.6; }
.trial-card__duration small {
  color: #d1e0da;
  font-size: .9375rem;
  line-height: 1.5;
}

/* One extra menu item keeps its full type size and the original phone rail. */
@media (min-width: 931px) and (max-width: 1100px) {
  .header-contact { display: none; }
}
@media (max-width: 1040px) {
  .benefit-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 22px;
    padding: 24px;
  }
  .benefit-card__icon { grid-row: 1 / span 2; margin-bottom: 0; }
  .benefit-card h3, .benefit-card p { grid-column: 2; }
  .benefit-card h3 { margin-bottom: 8px; }
  .start-step { padding: 26px; }
}
@media (max-width: 820px) {
  .benefits-preview { align-items: flex-start; flex-direction: column; gap: 16px; padding: 24px; }
  .start-steps { grid-template-columns: 1fr; gap: 14px; }
  .start-contact { flex-direction: column; align-items: flex-start; gap: 20px; }
  .trial-card { padding: 36px; }
}
@media (max-width: 560px) {
  .benefits-preview { margin-top: 20px; padding: 22px 18px; border-radius: 18px; }
  .benefits-preview .button { padding-inline: 14px; }
  .benefit-card { grid-template-columns: 44px minmax(0, 1fr); gap: 16px; padding: 24px; border-radius: 20px; }
  .benefit-card__icon { grid-row: 1; width: 44px; height: 44px; margin: 0; border-radius: 13px; }
  .benefit-card__icon svg { width: 28px; height: 28px; }
  .benefit-card h3 { align-self: center; margin: 0; }
  .benefit-card p { grid-column: 1 / -1; }
  .benefits__arrangement { margin-top: 24px; padding-left: 18px; }
  .benefits__actions { display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; margin-top: 24px; }
  .start-step { padding: 24px 22px; border-radius: 20px; }
  .start-step__head { gap: 14px; margin-bottom: 16px; }
  .start-step h3 { font-size: 1.1875rem; }
  .start-contact { margin: 24px 0 36px; }
  .start-contact .button { align-self: stretch; }
  .trial-card { padding: 30px 22px; }
  .trial-card h3 { font-size: clamp(2rem, 8.5vw, 2.5rem); }
}
@media print {
  .benefits-preview, .benefits__actions, .start-contact { display: none; }
  .benefit-card, .start-step { break-inside: avoid; box-shadow: none; background: #fff; border: 1px solid #bbb; }
}
