/* SILO Storage Providers */

.sp-page {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 38%);
}

.sp-hero {
  padding: clamp(48px, 6vw, 80px) 0 clamp(40px, 5vw, 64px);
}

.sp-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.sp-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(26, 74, 138, 0.08);
  color: #1a4a8a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sp-hero__title {
  margin: 0 0 16px;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.12;
  color: #0f2a53;
}

.sp-hero__lead {
  margin: 0;
  max-width: 560px;
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.65;
  color: #5c6778;
}

.sp-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(145deg, #eef4fc 0%, #ffffff 55%, #f0f7ff 100%);
  border: 1px solid #e3e9f2;
  box-shadow: 0 20px 60px rgba(15, 42, 83, 0.08);
  overflow: hidden;
}

.sp-hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(58, 134, 255, 0.12), transparent 55%);
  pointer-events: none;
}

.sp-hero__visual img {
  position: relative;
  width: min(100%, 420px);
  height: auto;
}

.sp-provider-types {
  padding: 0 0 clamp(56px, 7vw, 88px);
}

.sp-provider-types__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1120px;
  margin: 0 auto;
}

.sp-provider-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(24px, 3vw, 32px);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e3e9f2;
  box-shadow: 0 8px 32px rgba(15, 42, 83, 0.06);
}

.sp-provider-card__badge {
  display: inline-flex;
  align-self: flex-start;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f0f5fc;
  color: #1a4a8a;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.sp-provider-card h2 {
  margin: 0;
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  color: #0f2a53;
  line-height: 1.2;
}

.sp-provider-card p {
  margin: 0;
  flex: 1;
  font-size: 15px;
  line-height: 1.65;
  color: #5c6778;
}

.sp-provider-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  margin-top: 4px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1a4a8a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
}

.sp-provider-card__cta:hover {
  background: #0f2a53;
  transform: translateY(-1px);
}

.sp-provider-card__cta--secondary {
  background: #ffffff;
  color: #1a4a8a;
  border: 1px solid #c5d4ea;
}

.sp-provider-card__cta--secondary:hover {
  background: #f0f5fc;
  color: #0f2a53;
}

.sp-products {
  padding: clamp(48px, 6vw, 72px) 0;
  background: #0f2a53;
  color: #ffffff;
}

.sp-products__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.sp-products__heading {
  color: rgba(255, 255, 255, 0.82);
}

.sp-products__header {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.sp-products__header h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  line-height: 1.2;
}

.sp-products__header p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.sp-products__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sp-product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.sp-product-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.sp-product-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.1);
}

.sp-product-card__icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.sp-product-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
}

.sp-product-card__desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.sp-testimonial {
  padding: clamp(56px, 7vw, 88px) 0;
}

.sp-testimonial__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.sp-testimonial__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #0f2a53;
  line-height: 1.2;
}

.sp-testimonial__copy > p {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.65;
  color: #5c6778;
}

.sp-quote {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e3e9f2;
  box-shadow: 0 12px 40px rgba(15, 42, 83, 0.07);
}

.sp-quote blockquote {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.7;
  color: #0f2a53;
}

.sp-quote__author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sp-quote__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a4a8a, #3a86ff);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 18px;
}

.sp-quote__name {
  font-size: 15px;
  font-weight: 600;
  color: #0f2a53;
}

.sp-quote__role {
  font-size: 13px;
  color: #5c6778;
}

.sp-demand {
  padding: 0 0 clamp(56px, 7vw, 88px);
}

.sp-demand__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.sp-demand__intro h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #0f2a53;
  line-height: 1.2;
}

.sp-demand__intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  color: #5c6778;
}

.sp-criteria {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sp-criteria__title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
  color: #0f2a53;
}

.sp-criteria__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e3e9f2;
  font-size: 15px;
  line-height: 1.5;
  color: #334155;
}

.sp-criteria__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  color: #1a4a8a;
}

.sp-apply {
  padding: clamp(56px, 7vw, 88px) 0 clamp(80px, 9vw, 104px);
  background: linear-gradient(180deg, #f0f5fc 0%, #ffffff 100%);
}

.sp-apply__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
  max-width: 1120px;
  margin: 0 auto;
}

.sp-apply__copy h2 {
  margin: 0 0 12px;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #0f2a53;
  line-height: 1.2;
}

.sp-apply__copy p {
  margin: 0 0 20px;
  font-size: 16px;
  line-height: 1.65;
  color: #5c6778;
}

.sp-apply__note {
  padding: 16px 18px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e3e9f2;
  font-size: 14px;
  line-height: 1.55;
  color: #5c6778;
}

.sp-apply__note strong {
  color: #0f2a53;
}

.sp-form-panel {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid #e3e9f2;
  box-shadow: 0 16px 48px rgba(15, 42, 83, 0.08);
}

.sp-form {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 4%;
}

.sp-form .form-element {
  width: 48%;
}

.sp-form .form-element.full-width-element {
  width: 100%;
}

.sp-form select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%235c6778' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.sp-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sp-checkbox-group__label {
  color: #0f2a53;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.sp-checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.sp-checkbox-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
  cursor: pointer;
}

.sp-checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: #1a4a8a;
  cursor: pointer;
}

.sp-form-legal {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #5c6778;
}

.sp-form-legal a {
  color: #1a4a8a;
  text-decoration: underline;
}

.sp-form .form-submit {
  width: 100%;
  border: 0;
  margin-top: 4px;
}

.sp-form-success,
.sp-form-error {
  display: none;
  padding: 16px 18px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 1.5;
}

.sp-form-success {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
}

.sp-form-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

.sp-form-success.is-visible,
.sp-form-error.is-visible {
  display: block;
}

@media (max-width: 991px) {
  .sp-hero__grid,
  .sp-testimonial__inner,
  .sp-demand__grid,
  .sp-apply__inner {
    grid-template-columns: 1fr;
  }

  .sp-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .sp-provider-types__grid {
    grid-template-columns: 1fr;
  }

  .sp-products__grid {
    grid-template-columns: 1fr;
  }

  .sp-form .form-element {
    width: 100%;
  }
}
