/* Static conversion behavior helpers */
html, body {
  min-height: 100%;
}

body {
  margin: 0;
}

[data-hidden="true"] {
  display: none !important;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 9999px;
}

.cursor-pointer {
  cursor: pointer;
}

textarea {
  font-family: Inter, sans-serif;
}

.logo-box {
  background: #ffffff !important;
  border-radius: 20px !important;
  padding: 12px 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
  transition: all 0.2s ease-in-out !important;
}

.logo-box:hover {
  box-shadow: 0 6px 22px rgba(0, 227, 170, 0.25) !important;
  transform: translateY(-1px);
}

.logo-box img {
  display: block;
  max-height: 42px;
  width: auto;
  object-fit: contain;
}

.logo-img {
  background: #ffffff;
  padding: 8px 12px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
}

.rotate-180 {
  transform: rotate(180deg);
}

.translate-y-0 {
  transform: translateY(0);
}

.animate-in {
  animation: fadeSlideIn 240ms ease-out;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scan {
  0% { transform: translateY(0); }
  50% { transform: translateY(240px); }
  100% { transform: translateY(0); }
}

/* Hero provision slider track */
#hero-slider-track {
  display: flex;
  width: 200%;
  transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.hero-bot-badge {
  filter: drop-shadow(0 10px 22px rgba(0, 168, 107, 0.4));
  transition: transform 0.3s ease;
}

.hero-bot-badge:hover {
  transform: translateY(-2px) scale(1.03);
}

/* Contact Form 7 - Contact page visual system */
.niish-cf7-shell {
  width: 100%;
  color: #f8fafc;
}

.niish-cf7-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.niish-cf7-label {
  display: block;
  margin: 0 0 12px;
  color: #93a3ba;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.niish-cf7-shell .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.niish-cf7-input,
.niish-cf7-textarea {
  width: 100%;
  background: #060907;
  color: #f8fafc;
  border: 1px solid rgba(0, 227, 170, 0.28);
  border-radius: 16px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.niish-cf7-textarea {
  min-height: 170px;
  resize: vertical;
}

.niish-cf7-input::placeholder,
.niish-cf7-textarea::placeholder {
  color: #a9bacd;
  opacity: 1;
}

.niish-cf7-input:focus,
.niish-cf7-textarea:focus {
  outline: none;
  border-color: rgba(0, 227, 170, 0.72);
  box-shadow: 0 0 0 2px rgba(0, 227, 170, 0.18);
  background: #070b09;
}

.niish-cf7-consent {
  margin: 14px 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #93a3ba;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.45;
}

.niish-cf7-checkbox {
  width: 15px;
  height: 15px;
  margin: 2px 0 0;
  accent-color: #00e3aa;
  border-radius: 4px;
  flex: 0 0 auto;
}

.niish-cf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 26px;
  background: #00e3aa;
  color: #060907;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
  box-shadow: 0 10px 26px rgba(0, 227, 170, 0.24);
}

.niish-cf7-submit:hover {
  background: #00c897;
  transform: translateY(-1px);
}

.niish-cf7-submit:active {
  transform: translateY(0);
}

.niish-cf7-shell .wpcf7-spinner {
  margin: 0 0 0 12px;
  vertical-align: middle;
}

.niish-cf7-shell .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ff7e7e;
  text-transform: none;
  letter-spacing: 0;
}

.niish-cf7-shell .wpcf7 form.invalid .wpcf7-response-output,
.niish-cf7-shell .wpcf7 form.unaccepted .wpcf7-response-output,
.niish-cf7-shell .wpcf7 form.failed .wpcf7-response-output {
  border: 1px solid rgba(255, 126, 126, 0.7);
  background: rgba(255, 126, 126, 0.12);
  color: #ffd6d6;
}

.niish-cf7-shell .wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid rgba(0, 227, 170, 0.62);
  background: rgba(0, 227, 170, 0.14);
  color: #c8fff0;
}

.niish-cf7-shell .wpcf7-response-output {
  margin: 14px 0 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .niish-cf7-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .niish-cf7-input,
  .niish-cf7-textarea {
    font-size: 14px;
  }

  .niish-cf7-textarea {
    min-height: 155px;
  }
}

/* Contact Form 7 - Support page visual system */
.niish-support-cf7 {
  width: 100%;
  color: #f8fafc;
}

.niish-support-cf7-intro {
  margin: 0 0 18px;
  color: #94a3b8;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
}

.niish-support-cf7-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.niish-support-cf7-label {
  display: block;
  margin: 0 0 12px;
  color: #93a3ba;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.niish-support-cf7 .wpcf7-form-control-wrap {
  display: block;
  margin-top: 6px;
}

.niish-support-cf7-input,
.niish-support-cf7-textarea {
  width: 100%;
  background: #060907;
  color: #f8fafc;
  border: 1px solid rgba(0, 227, 170, 0.28);
  border-radius: 16px;
  padding: 11px 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

.niish-support-cf7-textarea {
  min-height: 170px;
  resize: vertical;
}

.niish-support-cf7-input::placeholder,
.niish-support-cf7-textarea::placeholder {
  color: #a9bacd;
  opacity: 1;
}

.niish-support-cf7-input:focus,
.niish-support-cf7-textarea:focus {
  outline: none;
  border-color: rgba(0, 227, 170, 0.72);
  box-shadow: 0 0 0 2px rgba(0, 227, 170, 0.18);
  background: #070b09;
}

.niish-support-cf7 select.niish-support-cf7-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 36px;
  background-image: linear-gradient(45deg, transparent 50%, #f8fafc 50%), linear-gradient(135deg, #f8fafc 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.niish-support-cf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  padding: 12px 32px;
  background: #00e3aa;
  color: #060907;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
  box-shadow: 0 10px 26px rgba(0, 227, 170, 0.24);
}

.niish-support-cf7-submit:hover {
  background: #00c897;
  transform: translateY(-1px);
}

.niish-support-cf7-submit:active {
  transform: translateY(0);
}

.niish-support-cf7 .wpcf7-spinner {
  margin: 0 0 0 12px;
  vertical-align: middle;
}

.niish-support-cf7 .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 12px;
  font-weight: 700;
  color: #ff7e7e;
  text-transform: none;
  letter-spacing: 0;
}

.niish-support-cf7 .wpcf7 form.invalid .wpcf7-response-output,
.niish-support-cf7 .wpcf7 form.unaccepted .wpcf7-response-output,
.niish-support-cf7 .wpcf7 form.failed .wpcf7-response-output {
  border: 1px solid rgba(255, 126, 126, 0.7);
  background: rgba(255, 126, 126, 0.12);
  color: #ffd6d6;
}

.niish-support-cf7 .wpcf7 form.sent .wpcf7-response-output {
  border: 1px solid rgba(0, 227, 170, 0.62);
  background: rgba(0, 227, 170, 0.14);
  color: #c8fff0;
}

.niish-support-cf7 .wpcf7-response-output {
  margin: 14px 0 0;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .niish-support-cf7-grid-2 {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 767px) {
  .niish-support-cf7-intro {
    font-size: 15px;
  }

  .niish-support-cf7-input,
  .niish-support-cf7-textarea {
    font-size: 14px;
  }

  .niish-support-cf7-textarea {
    min-height: 155px;
  }
}

