/* Home page only: hero trust-strip, section heads, About teaser, Process teaser */

.trust-strip {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border-light);
}
@media (max-width: 1099px) { .trust-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 619px) { .trust-strip { grid-template-columns: 1fr; } }
.trust-strip__item { padding: 18px 22px; background: var(--white); }
.trust-strip__head { display: flex; align-items: center; gap: 10px; }
.trust-strip__head .icon { width: 19px; height: 19px; color: var(--blue); }
.trust-strip__title { font-family: var(--font-heading); font-size: 16.5px; font-weight: 600; color: var(--navy); }
.trust-strip__desc { margin-top: 6px; font-size: 14px; line-height: 1.55; color: var(--text-muted); }

.section-head {
  display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-end; justify-content: space-between;
}
.section-head__copy { max-width: 60ch; }
.section-head h2 {
  margin-top: 16px; font-size: clamp(27px, 3.2vw, 40px); line-height: 1.14;
  letter-spacing: -0.02em; font-weight: 700; color: var(--navy);
}
.section--navy .section-head h2, .section--navy h2 { color: var(--white); }
.section-head p { margin-top: 18px; font-size: 16.5px; line-height: 1.65; color: var(--text-body); }

.about__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: clamp(40px, 5vw, 72px); align-items: center; }
.about__points { margin-top: 30px; display: grid; gap: 16px; }
.about__point { display: flex; gap: 14px; align-items: flex-start; }
.about__point-dot { width: 8px; height: 8px; margin-top: 8px; flex: 0 0 auto; }
.about__point-dot--blue { background: var(--blue); }
.about__point-dot--green { background: var(--green); }
.about__point strong { font-weight: 600; color: var(--navy); }
.about__point span.desc { color: var(--text-muted); }

.about__media { display: grid; gap: 14px; min-width: 0; }
.about__photo-main { aspect-ratio: 5/4; border: 1px solid var(--border); position: relative; width: 100%; overflow: hidden; }
.about__photo-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.about__photo-sm { aspect-ratio: 1/1; border: 1px solid var(--border); position: relative; width: 100%; overflow: hidden; }
.about__photo-main img, .about__photo-sm img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.process-teaser { margin-top: clamp(30px, 4vw, 48px); display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: clamp(18px, 2vw, 24px); }
.process-teaser__item { background: var(--white); border: 1px solid var(--border); padding: 26px 22px 28px; }
.process-teaser__num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.08em; color: var(--blue); }
.process-teaser__bar { margin-top: 16px; height: 2px; background: var(--blue); width: 32px; }
.process-teaser__bar--green { background: var(--green); }
.process-teaser__item h3 { margin-top: 16px; font-size: 17.5px; font-weight: 600; color: var(--navy); }
.process-teaser__item p { margin-top: 8px; font-size: 14.5px; line-height: 1.6; color: var(--text-muted); }
