/* ===== Home page ===== */

/* Hero */
.home-hero { padding: 64px 0 40px; background:
    radial-gradient(120% 80% at 90% -10%, #eef5f0 0%, rgba(238,245,240,0) 55%),
    #ffffff; }
.home-hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.home-hero__copy h1 { font-size: clamp(26px, 2.9vw, 37px); line-height: 1.2; margin-bottom: 16px; max-width: 20ch; }
.home-hero__copy .lead { margin-bottom: 24px; font-size: 15px; }
.home-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }

.trust-row { display: flex; gap: 26px; flex-wrap: wrap; padding-top: 10px; }
.trust-badge { display: flex; align-items: center; gap: 10px; }
.trust-badge__icon { height: 34px; width: auto; max-width: 40px; object-fit: contain; flex-shrink: 0; }
.trust-badge__text { display: flex; flex-direction: column; }
.trust-badge b { font-size: 15px; color: var(--navy); font-family: var(--serif); letter-spacing: .04em; }
.trust-badge span { font-size: 11px; color: var(--muted); max-width: 130px; line-height: 1.3; }

.home-hero__art { position: relative; }
.skyline { width: 100%; }
.location-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 12px; overflow: hidden; background: #fff;
  box-shadow: var(--shadow-sm); margin-top: 8px;
}
.loc { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 16px; color: var(--navy); font-weight: 600; }
.loc + .loc { border-left: 1px solid var(--line); }
.loc img { height: 36px; width: auto; object-fit: contain; }

/* Service cards */
.svc-cards { margin-top: -6px; }
.svc-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); transition: .22s; min-height: 240px; display: flex; flex-direction: column; }
.svc-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.svc-card h3 { font-size: 19px; margin-bottom: 9px; }
.svc-card p { font-size: 13.5px; margin-bottom: 20px; flex: 1; }
.svc-card .arrow-link { color: var(--green); }
.svc-card--dark { background: var(--navy); }
.svc-card--dark h3 { color: #fff; }
.svc-card--dark p { color: #b7c2d4; }
.svc-card--dark .icon-badge { background: rgba(42,160,98,.16); color: var(--green-500); }
.svc-card--dark .arrow-link { color: #fff; }

/* Who we help */
.help-grid { margin-top: 8px; }
.help-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 18px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: .2s; box-shadow: var(--shadow-sm);
}
.help-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d9e5dd; }
.help-card b { color: var(--ink); font-family: var(--serif); font-size: 15px; }
.help-card .mini-arrow { width: 18px; height: 18px; color: var(--green); }

/* About teaser */
.about-teaser__title { font-size: clamp(21px, 2.4vw, 28px); max-width: 20ch; margin-bottom: 16px; }
.about-teaser__art { display: grid; place-items: center; }
.about-teaser__art img { width: 100%; max-width: 460px; height: auto; }

/* Why choose us */
.why-grid { grid-template-columns: repeat(6, 1fr); gap: 26px; }
.why-item h4 { font-family: var(--sans); font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.why-item p { font-size: 13px; color: var(--body); }
.why-item .icon-badge { width: 48px; height: 48px; margin-bottom: 16px; }
.why-item .icon-badge svg, .why-item .icon-badge img { width: 22px; height: 22px; object-fit: contain; }

/* Technology */
.tech__title { font-size: clamp(21px, 2.4vw, 28px); margin-bottom: 16px; }
.tech__art { display: grid; place-items: center; gap: 26px; }
.tech__device { width: 100%; max-width: 520px; height: auto; }
.tech__logos { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; align-items: center; }
.tech__logos img { height: 30px; width: auto; opacity: .85; transition: opacity .2s; filter: grayscale(20%); }
.tech__logos img:hover { opacity: 1; filter: none; }

@media (max-width: 980px) {
  .home-hero__inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .help-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .help-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-row { gap: 18px; }
}
