.custom-logo {
  width: auto;
  max-height: 52px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.package-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.package-card > span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: #fff;
  font-weight: 900;
  background: var(--navy);
  border-radius: 14px;
}

.package-card h3 {
  margin: 18px 0 8px;
  font-size: 19px;
}

.package-card p {
  color: var(--muted);
  font-size: 13px;
}

.package-card a {
  margin-top: auto;
  color: #2473c9;
  font-weight: 800;
  font-size: 13px;
}

.network-section {
  background: #fff;
}

.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.network-card {
  position: relative;
  min-height: 290px;
  padding: 36px;
  overflow: hidden;
  color: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.network-card::after {
  position: absolute;
  right: -70px;
  bottom: -80px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  content: "";
}

.network-card--canvas {
  background: linear-gradient(135deg, #173a5d, #3976a8);
}

.network-card--gi {
  background: linear-gradient(135deg, #a91f1b, #ef6c54);
}

.network-card > span {
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.16em;
}

.network-card h3 {
  font-size: 30px;
  line-height: 1.45;
}

.network-card p {
  position: absolute;
  bottom: 24px;
  left: 36px;
  font-weight: 800;
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}

.case-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.case-card > img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.case-card > div {
  padding: 22px;
}

.case-card h3 {
  margin: 6px 0;
  font-size: 19px;
  line-height: 1.5;
}

.case-card > div > p:last-child {
  color: var(--muted);
  font-size: 13px;
}

.case-placeholder {
  margin-top: 30px;
  padding: 34px;
  text-align: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.case-placeholder strong {
  font-size: 20px;
}

.case-placeholder p,
.faq-grid details > div {
  color: var(--muted);
}

.faq-grid details > div p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .package-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 780px) {
  .package-grid,
  .network-grid,
  .case-grid {
    grid-template-columns: 1fr;
  }

  .network-card {
    min-height: 260px;
    padding: 28px;
  }

  .network-card h3 {
    font-size: 26px;
  }

  .network-card p {
    left: 28px;
  }

  .case-card > img {
    height: 210px;
  }
}
