
/* ── Maintenance Section ── */

#odrzavanje {
  padding: 100px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(var(--max-width) - 300px);
  margin: auto;
  font-family: var(--font-family-inter) !important;
  font-weight: 300;
}

#odrzavanje header {
  font-size: 52px;
  text-align: center;
}

#odrzavanje > p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin-top: 25px;
  margin-bottom: 55px;
  padding: 25px;
  max-width: 720px;
}

.maintenance-packages {
  display: flex;
  gap: 24px;
  max-width: 1100px;
  width: 100%;
  padding: 40px 0 8px;
  font-size: 17px;
  font-family: var(--font-family-inter);
}

.maintenance-package {
  position: relative;
  flex: 1;
  border: 1.5px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.maintenance-package:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.13);
  border-color: rgba(34, 197, 94, 0.5);
}

.maintenance-popular {
  border: 2px solid #22c55e;
  background: linear-gradient(160deg, #f3fff6 0%, #fff 100%);
}

.maintenance-popular:hover {
  border-color: #22c55e;
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.18);
}

.maintenance-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  background: #22c55e;
  color: #fff;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.maintenance-package h3 {
  margin-top: 0;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #22c55e;
}

.maintenance-price {
  font-size: 32px !important;
  font-weight: 700;
  color: #22c55e !important;
  margin: 8px 0 0 !important;
  letter-spacing: -0.5px;
  display: flex !important;
  align-items: baseline;
  gap: 4px;
  justify-content: flex-start !important;
}

.per-month {
  font-size: 16px;
  font-weight: 400;
  color: #666;
}

.maintenance-package ul {
  margin-top: 20px;
  flex: 1;
  list-style: none;
  padding: 0;
}

.maintenance-package li {
  padding: 6px 0 6px 20px;
  font-size: 15px;
  line-height: 1.4;
  position: relative;
}

.maintenance-package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
}

.maintenance-btn {
  margin-top: 18px;
  align-self: stretch;
  justify-content: center;
  white-space: nowrap;
  font-size: 13px;
}

@media (max-width: 768px) {
  #odrzavanje {
    padding-top: 80px;
  }
  .maintenance-packages {
    flex-direction: column;
  }
  #odrzavanje header {
    font-size: 32px;
  }
}

/* ── End Maintenance Section ── */

#packages {
  padding: 100px 24px 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: calc(var(--max-width) - 300px);
  margin: auto;
  font-family: var(--font-family-inter) !important;
  font-weight: 300;
}

#packages header {
  font-size: 52px;
}

#packages p {
  text-align: center;
  line-height: 1.5;
  display: flex;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}

#packages > p {
  font-size: 18px;
  line-height: 1.5;
  margin-top: 25px;
  margin-bottom: 55px;
  padding: 25px;
}

/* Mobile */
@media (max-width: 768px) {
  #packages {
    padding-top: 80px;
  }
}

.packages {
  overflow: hidden;
  display: flex;
  gap: 24px;
  max-width: 1100px;
  width: 100%;
  padding: 0 0 8px;
  font-size: 17px;
  font-family: var(--font-family-inter);
  padding-top: 40px;
}

.package {
  position: relative;
  flex: 1;
  border: 1.5px solid rgba(38, 54, 178, 0.18);
  border-radius: 20px;
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.package:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(38, 54, 178, 0.12);
  border-color: rgba(38, 54, 178, 0.35);
}

.package h3 {
  margin-top: 0;
  font-size: 15px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: #2636B2;
}

#gold {
  color: #FF5722;
}

.popular {
  border-color: rgba(38, 54, 178, 0.4);
  background: linear-gradient(160deg, #f7f8ff 0%, #fff 100%);
}

.standard {
  border: 2px solid #E1242C;
  border-radius: 20px;
}

.standard:hover {
  border-color: #E1242C;
  box-shadow: 0 16px 48px rgba(225, 36, 44, 0.12);
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #2636B2;
  margin: 8px 0 0;
  letter-spacing: -0.5px;
}

.package ul {
  margin-top: 20px;
  flex: 1;
  list-style: none;
  padding: 0;
}

.package li {
  padding: 6px 0;
  font-size: 15px;
  line-height: 1.4;
  padding-left: 20px;
  position: relative;
}

.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
  font-size: 13px;
}

.package .note {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
  font-style: italic;
}

.package .button {
  margin-top: 18px;
  align-self: stretch;
  justify-content: center;
  white-space: nowrap;
  font-size: 13px;
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  background: #E1242C;
  color: #fff;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  clip-path: none;
  max-width: none;
}
