.static-page {
  padding: 100px 0 80px;
  background: #fff;
}

.static-page__header {
  margin-bottom: 40px;
}

.static-page__tag {
  color: #ef017f;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.static-page__header h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 92px;
  font-weight: 700;
  line-height: 1;
  color: #1a1a1a;
  margin: 0;
}

.static-page__subtitle {
  max-width: 560px;
  margin: 20px 0 0;
  color: #667085;
  font-size: 17px;
  line-height: 1.6;
}

.static-page__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.static-page__list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  border: 1px solid #e4e7ec;
  border-radius: 16px;
  background: #fff;
  color: #1a1a1a;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.static-page__list-text {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.static-page__list-text strong {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.static-page__list-text small {
  color: #667085;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.static-page__pagination {
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e4e7ec;
}

.static-page__pagination-summary {
  color: #667085;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

.static-page__pagination-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.static-page__pagination-link,
.static-page__pagination-current {
  align-items: center;
  border: 1px solid #e4e7ec;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  gap: 6px;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  padding: 0 14px;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.static-page__pagination-link {
  background: #fff;
  color: #344054;
}

.static-page__pagination-link:hover {
  border-color: #ef017f;
  color: #ef017f;
}

.static-page__pagination-current {
  background: #ef017f;
  border-color: #ef017f;
  color: #fff;
}

.static-page__pagination-ellipsis {
  color: #98a2b3;
  font-size: 14px;
  font-weight: 700;
  padding: 0 4px;
}

.static-page__list a:hover {
  border-color: #ef017f;
  box-shadow: 0 10px 24px rgba(239, 1, 127, 0.08);
  color: #ef017f;
}

.static-page__list a i {
  color: #ef017f;
  font-size: 14px;
  transition: transform 0.2s ease;
}

.static-page__list a:hover i {
  transform: translateX(4px);
}

.static-page__empty {
  color: #667085;
  font-size: 16px;
  margin: 0;
}

.static-page__content {
  color: #344054;
  font-size: 16px;
  line-height: 1.75;
}

.static-page__content h2,
.static-page__content h3,
.static-page__content h4 {
  font-family: "Bebas Neue", sans-serif;
  color: #1a1a1a;
  letter-spacing: 0.5px;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.static-page__content h2 {
  font-size: 36px;
  line-height: 1.1;
}

.static-page__content h3 {
  font-size: 28px;
  line-height: 1.15;
}

.static-page__content p,
.static-page__content li {
  margin-bottom: 1rem;
}

.static-page__content a:link,
.static-page__content a:visited {
  color: #0085de;
  text-decoration: underline;
}

.static-page__content a:hover {
  color: #ef017f;
}

.static-page__content ul,
.static-page__content ol {
  padding-left: 1.25rem;
}

.static-page__back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #e4e7ec;
}

.static-page__back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #667085;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.static-page__back a:hover {
  color: #ef017f;
}

.static-form {
  padding: 28px;
  border: 1px solid #e4e7ec;
  border-radius: 25px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.static-form .form-label {
  display: block;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.static-form .iti {
  display: block;
  width: 100%;
}

.static-form__field--phone {
  overflow: visible;
}

.static-form .form-control {
  border: 1px solid #d0d5dd;
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 14px;
  font-size: 15px;
}

.static-form .form-control:focus {
  border-color: #ef017f;
  box-shadow: 0 0 0 3px rgba(239, 1, 127, 0.12);
}

.static-form textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.static-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border: 0;
  border-radius: 999px;
  background: #ef017f;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.static-form__submit:hover {
  background: #00a2ff;
}

.static-form__submit:disabled {
  opacity: 0.72;
  cursor: not-allowed;
  transform: none;
}

.static-form__submit-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: static-form-spin 0.7s linear infinite;
  vertical-align: -2px;
}

@keyframes static-form-spin {
  to {
    transform: rotate(360deg);
  }
}

.static-form-feedback-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.static-form-feedback-modal[hidden] {
  display: none;
}

.static-form-feedback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(2px);
}

.static-form-feedback-modal__dialog {
  position: relative;
  background: #ffffff;
  border-radius: 25px;
  padding: 32px 28px 28px;
  width: 92%;
  max-width: 400px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
  text-align: center;
  font-family: "Inter", "Montserrat", Arial, sans-serif;
}

.static-form-feedback-modal__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

.static-form-feedback-modal__icon--success {
  background: #ecfdf5;
  color: #059669;
}

.static-form-feedback-modal__icon--error {
  background: #fef2f2;
  color: #dc2626;
}

.static-form-feedback-modal__title {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.2;
}

.static-form-feedback-modal__message {
  margin: 0 0 24px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.static-form-feedback-modal__btn {
  min-height: 46px;
  min-width: 160px;
  border-radius: 9999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 0;
  background: #ef017f;
  color: #fff;
  transition: background-color 0.2s ease;
}

.static-form-feedback-modal__btn:hover {
  background: #d4006f;
}

@media only screen and (max-width: 768px) {
  .static-page {
    padding: 72px 0 56px;
  }

  .static-page__header h1 {
    font-size: 44px;
  }

  .static-page__list a {
    padding: 16px 18px;
    font-size: 15px;
  }
}