/* Compact local software landing page */
*, *::before, *::after { box-sizing: border-box; }

.soft-wrap {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.soft-hero {
  padding: 7rem 0 4rem;
  color: var(--text);
  background:
    radial-gradient(ellipse 72% 65% at 68% 44%, rgba(59,91,219,0.08), transparent 66%),
    radial-gradient(ellipse 42% 38% at 4% 90%, rgba(249,115,22,0.06), transparent 62%),
    url("../../images/grid-bg.png") center/cover no-repeat,
    #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 3rem;
  align-items: center;
}

.soft-breadcrumb {
  margin-bottom: 0.8rem;
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.74rem;
}

.soft-breadcrumb a { color: var(--blue); text-decoration: none; }
.soft-breadcrumb a:hover { color: var(--blue2); }

.eyebrow {
  display: inline-flex;
  margin: 0 0 0.8rem;
  padding: 0.34rem 0.75rem;
  border: 1px solid rgba(59,91,219,0.18);
  border-radius: 999px;
  background: var(--blue-lt);
  color: var(--blue);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.soft-hero h1 {
  max-width: 760px;
  margin: 0 0 1rem;
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.65rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-text {
  max-width: 650px;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero-actions.center { justify-content: center; }

.btn-light,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.78rem 1.35rem;
  border-radius: 8px;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-light { background: var(--blue); color: #fff; }
.btn-dark { border: 1.5px solid var(--border2); background: #fff; color: var(--text2); }
.btn-light:hover, .btn-dark:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.16); }

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  color: var(--text2);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-points span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #fbbf24;
}

.hero-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 22px 44px rgba(59,91,219,0.12);
  backdrop-filter: blur(14px);
  overflow: hidden;
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-card-top span { width: 9px; height: 9px; border-radius: 50%; background: #ef4444; }
.hero-card-top span:nth-child(2) { background: #f59e0b; }
.hero-card-top span:nth-child(3) { background: #22c55e; }

.hero-stat { padding: 1.4rem; }
.hero-stat small { color: var(--blue); font-size: 0.76rem; }
.hero-stat strong { display: block; margin: 0.25rem 0 0.5rem; font-family: var(--font-head); font-size: 1.3rem; }
.hero-stat p { margin: 0; color: var(--muted); font-size: 0.86rem; line-height: 1.65; }

.mini-bars {
  display: flex;
  align-items: end;
  gap: 0.65rem;
  height: 120px;
  padding: 0 1.4rem 1.4rem;
}

.mini-bars i {
  flex: 1;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, #93c5fd, rgba(147,197,253,0.22));
}

.mini-bars i:nth-child(1) { height: 45%; }
.mini-bars i:nth-child(2) { height: 72%; }
.mini-bars i:nth-child(3) { height: 55%; }
.mini-bars i:nth-child(4) { height: 88%; }
.mini-bars i:nth-child(5) { height: 65%; }

.soft-section { padding: 3.8rem 0; background: #fff; }
.soft-alt { background: #f6f8fc; }

.soft-section h2 {
  margin: 0 0 1rem;
  color: var(--text);
  font-family: var(--font-head);
  font-size: clamp(1.45rem, 3vw, 2.05rem);
  font-weight: 800;
  line-height: 1.22;
}

.lead {
  max-width: 980px;
  margin: 0;
  color: var(--text2);
  font-size: 0.98rem;
  line-height: 1.8;
}

.card-grid,
.service-list,
.industry-grid,
.nearby-grid,
.chips {
  display: grid;
  gap: 1rem;
}

.card-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.info-card {
  min-height: 138px;
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17,24,39,0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(59,91,219,0.24);
  box-shadow: 0 12px 28px rgba(59,91,219,0.08);
}

.info-card strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.95rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.65;
}

.service-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.service-list.compact { grid-template-columns: repeat(5, minmax(0, 1fr)); }

.service-list a,
.industry-grid span,
.nearby-grid a,
.chips span {
  min-height: 48px;
  padding: 0.85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 7px;
  background: #fff;
  color: var(--text2);
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.service-list a {
  background: #eef5ff;
  border-color: #dceaff;
  color: #1d4ed8;
}

.service-list a::before {
  content: "\2713";
  margin-right: 0.55rem;
}

.mini-title {
  margin: 2rem 0 0.8rem;
  color: var(--text);
  font-family: var(--font-head);
  font-size: 1rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
}

.chips span {
  min-height: auto;
  padding: 0.42rem 0.78rem;
  border-radius: 999px;
  background: #f3f4f6;
  color: var(--muted);
  font-size: 0.72rem;
}

.industry-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.nearby-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.nearby-grid a {
  text-align: center;
  color: var(--blue);
}
.nearby-grid a span {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 500;
}

.narrow { max-width: 850px; }

.soft-cta {
  padding: 4rem 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #243c9f, #27358f);
}

.soft-cta h2 {
  max-width: 720px;
  margin: 0 auto 0.6rem;
  font-family: var(--font-head);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.18;
}

.soft-cta p {
  margin: 0 auto 1.4rem;
  color: rgba(255,255,255,0.78);
}

.soft-cta .btn-light { background: #fff; color: var(--blue); }
.soft-cta .btn-dark { border-color: rgba(255,255,255,0.36); background: rgba(255,255,255,0.08); color: #fff; }

@media (max-width: 980px) {
  .hero-grid,
  .card-grid.three,
  .service-list,
  .service-list.compact,
  .industry-grid,
  .nearby-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .soft-hero { padding-top: 6rem; }
  .hero-grid,
  .card-grid.three,
  .service-list,
  .service-list.compact,
  .industry-grid,
  .nearby-grid { grid-template-columns: 1fr; }
  .soft-section { padding: 3rem 0; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .btn-light, .btn-dark { width: 100%; }
}
