@charset "UTF-8";
/* ============================================
   Företag – sidlayout & sektioner
   Gäller bara /foretag/
============================================ */
.page-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .page-section {
    padding: 5rem 0;
  }
}

/* --------- Översikt / intro --------- */
.business-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .business-layout {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.business-text h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.business-text p {
  margin: 0 0 1rem;
  color: #4b5563;
}

.business-highlights {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.highlight-box {
  background: #f9fafb;
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.highlight-box h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
}
.highlight-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-box ul li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #374151;
}
.highlight-box ul li:before {
  content: "•";
  color: #1e4bb8;
  margin-top: 0.15rem;
}

.business-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.business-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: #eff3ff;
  color: #1e4bb8;
  font-size: 0.8rem;
  font-weight: 500;
}

/* --------- Lösningar för företag --------- */
.business-solutions .section-header p {
  max-width: 620px;
}

.solutions-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 960px) {
  .solutions-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.solution-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.6rem 1.7rem;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
  border: 1px solid rgba(15, 23, 42, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.solution-card h3 {
  margin-top: 0;
  margin-bottom: 0.6rem;
}
.solution-card p {
  margin: 0 0 0.8rem;
  color: #4b5563;
  font-size: 0.95rem;
}
.solution-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.solution-card ul li {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.35rem;
}
.solution-card ul li:before {
  content: "– ";
  color: #9ca3af;
}

/* --------- Så fungerar samarbetet --------- */
.business-process .section-header p {
  max-width: 600px;
}

.process-cards {
  display: grid;
  gap: 1.4rem;
}
@media (min-width: 900px) {
  .process-cards {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.process-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 1.4rem 1.3rem 1.5rem;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  font-weight: 700;
  font-size: 1.5rem;
  color: rgba(30, 75, 184, 0.18);
}

.process-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.process-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.9rem;
}

/* --------- Kontakt/avslut --------- */
.business-contact .contact-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .business-contact .contact-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
    align-items: center;
  }
}

.business-contact p {
  color: #4b5563;
  max-width: 560px;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/*# sourceMappingURL=foretag.css.map */
