@charset "UTF-8";
/* ============================================
   Magasinering & förråd – layout & sektioner
============================================ */
.page-section {
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .page-section {
    padding: 5rem 0;
  }
}

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

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

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

.storage-aside {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.storage-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.12);
}

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

/* --------- Privat / Företag --------- */
.storage-types-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .storage-types-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.storage-type-box {
  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);
}
.storage-type-box h2 {
  margin-top: 0;
  margin-bottom: 0.7rem;
  font-size: 1.3rem;
}
.storage-type-box p {
  margin: 0 0 0.8rem;
  color: #4b5563;
}
.storage-type-box ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0.8rem;
}
.storage-type-box ul li {
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.3rem;
}
.storage-type-box ul li:before {
  content: "– ";
  color: #9ca3af;
}

.storage-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.9rem;
  color: #1e4bb8;
  font-weight: 500;
  text-decoration: none;
}
.storage-link:hover {
  text-decoration: underline;
}

/* --------- Fördelar --------- */
.storage-benefits .section-header p {
  max-width: 640px;
}

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

.benefit-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);
}
.benefit-card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.benefit-card p {
  margin: 0;
  color: #4b5563;
  font-size: 0.95rem;
}

/* --------- Process --------- */
.storage-process .section-header p {
  max-width: 640px;
}

.storage-process-layout {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .storage-process-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: flex-start;
  }
}

.storage-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  border-left: 2px solid rgba(30, 75, 184, 0.18);
}

.storage-steps li {
  position: relative;
  padding: 0.6rem 0 1.4rem 1.6rem;
}
.storage-steps li:last-child {
  padding-bottom: 0;
}
.storage-steps li h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}
.storage-steps li p {
  margin: 0;
  color: #4b5563;
  font-size: 0.94rem;
}

.storage-steps li::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  top: 0.9rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: #1e4bb8;
  box-shadow: 0 0 0 4px rgba(30, 75, 184, 0.16);
}

.storage-side-note {
  background: #f9fafb;
  border-radius: 14px;
  padding: 1.5rem 1.6rem;
  border: 1px solid rgba(15, 23, 42, 0.06);
}
.storage-side-note h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}
.storage-side-note p {
  margin: 0 0 0.7rem;
  color: #4b5563;
  font-size: 0.95rem;
}

/* --------- Pris & upplägg --------- */
.storage-pricing-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .storage-pricing-layout {
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    align-items: center;
  }
}

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

.storage-pricing-box {
  background: #111827;
  color: #ffffff;
  border-radius: 16px;
  padding: 1.8rem 1.9rem;
  position: relative;
  overflow: hidden;
}

.storage-pricing-box::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), transparent 55%);
  opacity: 0.8;
}

.storage-pricing-box h3 {
  position: relative;
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.storage-pricing-box ul {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.storage-pricing-box ul li {
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}
.storage-pricing-box ul li:before {
  content: "• ";
  color: #93c5fd;
}

.storage-pricing-box .btn-primary {
  position: relative;
}

/* --------- Relaterade tjänster --------- */
.storage-related-layout {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 900px) {
  .storage-related-layout {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    align-items: center;
  }
}

.storage-related-layout p {
  color: #4b5563;
  max-width: 520px;
}

.storage-related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.storage-related-links a {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  font-size: 0.9rem;
  color: #1e4bb8;
  text-decoration: none;
  font-weight: 500;
}
.storage-related-links a:hover {
  border-color: #1e4bb8;
}

/* Lite kompaktare på små skärmar */
@media (max-width: 600px) {
  .page-section {
    padding: 3rem 0;
  }
}

/*# sourceMappingURL=magasinering-forrad.css.map */
