.contact-cards {
  padding: 5rem 0 3rem;
}

.contact-cards__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .contact-cards__grid {
    grid-template-columns: 1fr;
  }
}

.contact-cards__body {
  flex: 1;
}

.contact-cards__footer {
  margin-top: auto;
  padding-top: 1.5rem;
}

.contact-cards__card {
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e2e8f0;
}

.contact-cards__card--support {
  background: #fff;
}

.contact-cards__card--sales {
  background: #EBF3FB;
  border-color: #d4e8f7;
}

.contact-cards__card--sales .contact-cards__icon {
  background: #fff;
  color: #1C73E6;
}

.contact-cards__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #EBF3FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #1C73E6;
  margin-bottom: 1.5rem;
}

.contact-cards__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1C73E6;
  margin-bottom: 0.6rem;
}

.contact-cards__title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #081245;
  letter-spacing: -0.3px;
  margin-bottom: 0.9rem;
}

.contact-cards__text {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8rem;
  margin-bottom: 0;
}

.contact-cards__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #1C73E6;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  align-self: flex-start;
  cursor: pointer;
  transition: background 0.18s;
}

.contact-cards__btn .fal.fa-arrow-right {
  transition: transform 0.18s;
}

.contact-cards__btn:hover {
  background: #1661c4;
  color: #fff;
  text-decoration: none;
}

.contact-cards__btn:hover .fal.fa-arrow-right {
  transform: translateX(3px);
}

.contact-cards__note-bar {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 0.75rem;
}

.contact-cards__note {
  font-size: 0.82rem;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
  background: #fefaf4;
  border-left: 3px solid #f59e0b;
  border-radius: 0 5px 5px 0;
  padding: 0.55rem 0.85rem;
}

.contact-cards__note .fal {
  color: #f59e0b;
  flex-shrink: 0;
}

.contact-cards__note a {
  color: #64748b;
  text-decoration: underline;
}

.contact-cards__note a:hover {
  color: #081245;
}

.contact-cards__email {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
  background: #fff;
  border: 1px solid #d4e8f7;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 0.75rem;
  -webkit-user-select: all;
     -moz-user-select: all;
      -ms-user-select: all;
          user-select: all;
}

.contact-cards__email .fal {
  font-size: 0.85rem;
  color: #1C73E6;
}

.contact-cards__email-note {
  font-size: 0.8rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

.cwizard-open {
  overflow: hidden;
}

.cwizard-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 18, 69, 0.55);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 1050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.cwizard-overlay--visible {
  opacity: 1;
  pointer-events: all;
}

.cwizard {
  background: #fff;
  border-radius: 12px;
  padding: 2.4rem 2.4rem 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: 0 20px 60px rgba(8, 18, 69, 0.18);
}

@media (max-width: 520px) {
  .cwizard {
    padding: 2rem 1.4rem 1.5rem;
  }
}

.cwizard__close {
  position: absolute;
  top: 1.1rem;
  right: 1.2rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  line-height: 1;
}

.cwizard__close:hover {
  color: #081245;
}

.cwizard__back {
  background: none;
  border: none;
  font-size: 0.82rem;
  color: #64748b;
  cursor: pointer;
  padding: 0;
  margin-bottom: 1.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.cwizard__back:hover {
  color: #1C73E6;
}

.cwizard__icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #EBF3FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #1C73E6;
  margin-bottom: 1.25rem;
}

.cwizard__icon--blue {
  background: #EBF3FB;
  color: #1C73E6;
}

.cwizard__icon--green {
  background: #dcfce7;
  color: #16a34a;
}

.cwizard__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #081245;
  letter-spacing: -0.2px;
  margin-bottom: 0.5rem;
}

.cwizard__sub {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.cwizard__options {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cwizard__option {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}

.cwizard__option:hover {
  border-color: #1C73E6;
  box-shadow: 0 0 0 3px rgba(28, 115, 230, 0.08);
}

.cwizard__option-icon {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 8px;
  background: #EBF3FB;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #1C73E6;
}

.cwizard__option-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cwizard__option-body strong {
  font-size: 0.92rem;
  color: #081245;
  font-weight: 700;
}

.cwizard__option-body small {
  font-size: 0.78rem;
  color: #64748b;
}

.cwizard__option-arrow {
  color: #cbd5e1;
  font-size: 0.85rem;
}

.cwizard__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0.7rem 1.4rem;
  border-radius: 6px;
  border: none;
  text-decoration: none;
  width: 100%;
  justify-content: center;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}

.cwizard__btn--primary {
  background: #1C73E6;
  color: #fff;
}

.cwizard__btn--primary:hover {
  background: #1661c4;
  color: #fff;
  text-decoration: none;
}

.cwizard__btn--secondary {
  background: #f1f5f9;
  color: #334155;
  margin-top: 0.6rem;
}

.cwizard__btn--secondary:hover {
  background: #e2e8f0;
  color: #081245;
  text-decoration: none;
}

.cwizard__hint {
  font-size: 0.78rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.cwizard__hint .fal {
  margin-right: 0.25rem;
}

.cwizard__email-block {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.6rem 0.9rem;
  margin-bottom: 1rem;
}

.cwizard__email-block a {
  color: #1C73E6;
  font-weight: 600;
  text-decoration: none;
}

.cwizard__email-block a:hover {
  text-decoration: underline;
}

.cwizard__email-block .fal {
  color: #1C73E6;
  font-size: 0.85rem;
}

.cwizard__divider {
  text-align: center;
  font-size: 0.78rem;
  color: #94a3b8;
  margin: 0.9rem 0;
  position: relative;
  z-index: 0;
}

.cwizard__divider::before,
.cwizard__divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: #e2e8f0;
  z-index: -1;
}

.cwizard__divider::before {
  left: 0;
}

.cwizard__divider::after {
  right: 0;
}

.cwizard__step--hidden {
  display: none;
}

.emergency-modal {
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.emergency-modal form {
  display: flex;
  min-height: 520px;
}

@media (max-width: 767px) {
  .emergency-modal form {
    flex-direction: column;
  }
}

.emergency-modal__photo {
  width: 200px;
  min-width: 200px;
  background-size: cover;
  background-position: center top;
  position: relative;
  background-color: #EBF3FB;
}

@media (max-width: 767px) {
  .emergency-modal__photo {
    width: 100%;
    min-width: unset;
    height: 160px;
    background-position: center;
  }
}

.emergency-modal__photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 18, 69, 0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.emergency-modal__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.15);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  padding: 0.3rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}

.emergency-modal__body {
  flex: 1;
  padding: 2rem 2rem 1.75rem;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (max-width: 767px) {
  .emergency-modal__body {
    padding: 1.5rem;
  }
}

.emergency-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: #94a3b8;
  cursor: pointer;
  padding: 0.25rem 0.4rem;
  line-height: 1;
}

.emergency-modal__close:hover {
  color: #081245;
}

.emergency-modal__icon {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: #fefaf4;
  border: 1.5px solid #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.emergency-modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #081245;
  letter-spacing: -0.2px;
  margin-bottom: 1.25rem;
}

.emergency-modal__alert {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  padding: 0.6rem 0.8rem;
  background: #fefaf4;
  border-left: 3px solid #f59e0b;
  border-radius: 0 5px 5px 0;
}

.emergency-modal__field {
  margin-bottom: 1rem;
}

.emergency-modal__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: #334155;
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.emergency-modal__input,
.emergency-modal__textarea {
  width: 100%;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  padding: 0.6rem 0.85rem;
  font-size: 0.9rem;
  color: #081245;
  background: #fff;
  transition: border-color 0.15s;
  outline: none;
  font-family: inherit;
}

.emergency-modal__input::-webkit-input-placeholder, .emergency-modal__textarea::-webkit-input-placeholder {
  color: #94a3b8;
}

.emergency-modal__input::-moz-placeholder, .emergency-modal__textarea::-moz-placeholder {
  color: #94a3b8;
}

.emergency-modal__input:-ms-input-placeholder, .emergency-modal__textarea:-ms-input-placeholder {
  color: #94a3b8;
}

.emergency-modal__input::-ms-input-placeholder, .emergency-modal__textarea::-ms-input-placeholder {
  color: #94a3b8;
}

.emergency-modal__input::placeholder,
.emergency-modal__textarea::placeholder {
  color: #94a3b8;
}

.emergency-modal__input:focus,
.emergency-modal__textarea:focus {
  border-color: #1C73E6;
  box-shadow: 0 0 0 3px rgba(28, 115, 230, 0.08);
}

.emergency-modal__textarea {
  resize: vertical;
}

.emergency-modal__help {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.3rem;
  display: block;
}

.emergency-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1.4rem;
  background: #f59e0b;
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  margin-top: auto;
  padding-top: 1rem;
  transition: background 0.18s;
}

.emergency-modal__submit:hover {
  background: #cf8508;
}

.emergency-modal__dialog {
  max-width: 680px;
}

