/* ============================================================
   SERVICES + STEPS + CTA VARIANTS + ABOUT
   ============================================================ */

/* ---- Services --------------------------------------------- */
.services { background: var(--surface); }
.svc-grid {
  display: grid;
  gap: 18px;
}
@media (min-width: 580px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 920px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}
.svc {
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.svc__media {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
}
.svc__media .ph { width: 100%; height: 100%; }
.svc__title {
  font-family: "Sora", sans-serif;
  font-size: 19px;
  font-weight: 700;
}
.svc__desc {
  color: var(--muted);
  font-size: 14px;
  flex-grow: 1;
  line-height: 1.6;
}
.svc__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.svc__price { font-size: 13px; color: var(--muted); }
.svc__price b {
  font-family: "Sora", sans-serif;
  font-size: 18px;
  color: var(--blue);
  display: block;
}
.svc__arrow {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--blue);
  transition: all .25s var(--ease);
  flex-shrink: 0;
}
.svc:hover .svc__arrow { background: var(--blue); color: #fff; }

/* ---- Steps (Як ми працюємо) ------------------------------ */
.steps { background: #fff; }
.steps__track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 18px;
  margin-top: 10px;
}
@media (min-width: 960px) {
  .steps__track {
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  .steps__track::before {
    content: "";
    position: absolute;
    top: 70px;
    left: 8%; right: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 8px, transparent 8px 16px);
    z-index: 0;
  }
}
@media (max-width: 380px) {
  .steps__track { grid-template-columns: 1fr; }
}
.step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.step__ring {
  width: 110px; height: 110px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--line);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 8px 26px rgba(26,77,143,.08);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
}
@media (min-width: 960px) {
  .step__ring { width: 140px; height: 140px; margin-bottom: 22px; }
}
.step:hover .step__ring {
  transform: translateY(-6px);
  border-color: var(--blue);
  box-shadow: 0 14px 36px rgba(26,77,143,.18);
}
.step__ring img { width: 46px; height: 46px; }
@media (min-width: 960px) { .step__ring img { width: 58px; height: 58px; } }
.step__caption {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
}
@media (min-width: 600px) { .step__caption { font-size: 18px; } }
.step__caption b { color: var(--blue); font-weight: 800; font-size: 19px; }
.step__sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
  max-width: 22ch;
  line-height: 1.5;
}

/* ---- CTA strip (compact — between sections) --------------- */
.cta-strip {
  background: #fff;
  padding-block: 32px;
  border-block: 1px solid var(--line);
}
.cta-strip__row {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
@media (min-width: 880px) {
  .cta-strip__row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 26px 34px;
    text-align: left;
  }
}
.cta-strip__ico {
  width: 60px; height: 60px;
  border-radius: 16px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue), #2f6fc0);
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 18px rgba(26,77,143,.28);
}
.cta-strip__ico svg { width: 28px; height: 28px; }
.cta-strip h3 {
  font-family: "Sora", sans-serif;
  font-size: clamp(18px, 2.5vw, 22px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 4px;
}
.cta-strip p { color: var(--muted); font-size: 14px; }
@media (min-width: 600px) { .cta-strip p { max-width: 56ch; } }
.cta-strip__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 880px) { .cta-strip__actions { justify-content: flex-end; } }
.cta-strip__phone {
  font-family: "Sora", sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1200px) { .cta-strip__phone { font-size: 22px; } }
.cta-strip__phone small {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2px;
}

/* ---- About ------------------------------------------------ */
.about__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 920px) {
  .about__grid { grid-template-columns: .9fr 1.1fr; gap: 56px; }
}
.about__media {
  aspect-ratio: 5/4;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
@media (max-width: 919px) { .about__media { aspect-ratio: 16/10; } }
.about__media .ph { width: 100%; height: 100%; }
.about h2 {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  margin: 14px 0 16px;
}
.about p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 12px;
}
.about__benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 16px;
  margin-top: 26px;
}
@media (min-width: 500px) {
  .about__benefits { grid-template-columns: repeat(3, 1fr); gap: 22px 18px; }
}
.bnf { display: flex; flex-direction: column; gap: 10px; }
.bnf__ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: var(--surface);
  display: grid;
  place-items: center;
}
@media (min-width: 600px) { .bnf__ico { width: 52px; height: 52px; } }
.bnf__ico img { width: 28px; height: 28px; }
.bnf b { font-size: 13.5px; font-weight: 700; line-height: 1.25; }
