

.appgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.appmodule {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--full-padding);
  border-radius: var(--full-radius);
  background: var(--rich-white);
  box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.appmodule:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.08);
  border-color: #d1d5db;
}

.appicon {
  width: 5rem;
  height: 5rem;
  margin: 0 0 1rem 0;
  flex-shrink: 0;
}

.appicon a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  min-height: 0;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  box-shadow: none;
}

.appicon img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  border-radius: 1.25rem;
  background: #ffffff;
  box-shadow: 0 0.5rem 1rem rgba(17, 24, 39, 0.08);
  border: 0.0625rem solid #edf0f7;
}

.appmodule h3 {
  margin: 0 0 0.375rem 0;
  font-size: 1.1rem;
  font-weight: 700;
}

.appmodule p {
  margin: 0 0 0.75rem 0;
  color: #586072;
  font-size: 0.875rem;
  line-height: 1.4;
}

.applinkofficial,
.badgesubtitle,
.badgetitle {
  color: #ffffff;
}


.rackstackcontainer {
  padding: 3.75rem 1.25rem;
  margin: 0 0;
}



.tiercard {
  background: white;
  border: 0.0625rem solid #e2e8f0;
  transition: border-color 0.3s, transform 0.3s;
  text-align: left;
  padding: 2rem;
  border-radius: 1rem;
}

.tiercard:hover {
  transform: translateY(-0.3125rem);
}

.tiercard.featured {
  border-color: var(--indigo);
  box-shadow: 0 0.625rem 1.875rem rgba(75, 0, 130, 0.1);
}

.tierprice {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 1.25rem 0;
}

.rackaction {
  display: block;
  text-align: center;
  padding: 0.75rem;
  border-radius: 0.5rem;
}

.popupbullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.popupbullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: #444;
}

.popupbulleticon {
  color: var(--indigo);
  font-weight: bold;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.popupbullettext {
  flex: 1;
}

.popuprow {
  display: flex;
  gap: 1rem;
}

.popuprow .popupfield {
  flex: 1;
}

.popupfield label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #444;
  margin-bottom: 0.25rem;
}

.popupfield input,
.popupfield textarea {
  width: 100%;
  padding: 0.625rem 0.75rem;
  border: 0.0625rem solid #d0d0d0;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  background: #fafafa;
  box-sizing: border-box;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.popupfield input:focus,
.popupfield textarea:focus {
  outline: none;
  border-color: #4b0082;
  box-shadow: 0 0 0 0.125rem rgba(75, 0, 130, 0.1);
  background: #fff;
}

.popupfield textarea {
  resize: vertical;
  min-height: 21.25rem;
}

.popupsubmit {
  width: 100%;
  padding: 0.8125rem;
  background: #4b0082;
  color: #fff;
  border: none;
  border-radius: 0.625rem;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: inherit;
  transition: background 0.2s, transform 0.15s;
}

.popupsubmit:hover {
  background: #6a0dad;
  transform: translateY(-0.0625rem);
}

.popupsubmit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.popupok {
  text-align: center;
  padding: 1.125rem 0;
}

.popupokicon {
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0.75rem;
}

.popupok h4 {
  margin: 0 0 0.375rem;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.popupok p {
  margin: 0 0 1rem;
  color: #666;
  font-size: 0.88rem;
}

.popupok button {
  padding: 0.625rem 1.75rem;
  background: #4b0082;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
}

@keyframes popupanimation {
  from {
    opacity: 0;
    transform: translateY(1rem) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.services {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  margin: 1.5rem 0 0 0;
}

.service {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  background: #ffffff;
  padding: var(--full-padding);
  border-radius: var(--full-radius);
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  gap: 1.5rem;
}

.service:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.06);
  border-color: #d1d5db;
}

.serviceicon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  background: #f3f4f6;
  color: #374151;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.serviceinfo {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.heading {
  margin: 0 0 0.25rem 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
}

.description {
  margin: 0;
  font-size: 0.95rem;
  color: #6b7280;
  line-height: 1.5;
}

.systems h2 {
  margin: 0 0 0 0;
}

.systems .pillars .container.half {
  justify-content: flex-start;
}