
/* Custom styles */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  scroll-behavior: smooth;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

/* Improve content readability */
p {
  max-width: 65ch;
  margin-bottom: 1.5rem;
}

/* Schema.org microdata styling */
[itemprop] {
  border: none;
  padding: 0;
  margin: 0;
}
/* Smooth hover transitions */
a, button, .dropdown-content {
  transition: all 0.2s ease;
}
/* Code block styling */
pre {
  font-family: 'Courier New', Courier, monospace;
  margin: 0;
  white-space: pre-wrap;
}

.language-javascript {
  color: #f8f8f2;
}

/* Pricing slider custom style */
input[type=range] {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 3px;
  outline: none;
}

input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #6C4DFF;
  cursor: pointer;
  transition: all 0.2s ease;
}

input[type=range]::-webkit-slider-thumb:hover {
  transform: scale(1.1);
  box-shadow: 0 0 0 4px rgba(108, 77, 255, 0.2);
}
/* Contact Widget */
#contact-popup {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#contact-popup.hidden {
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
}

#contact-button {
  transform: scale(1);
  transition: transform 0.2s ease;
}

#contact-button:hover {
  transform: scale(1.1);
}
/* Contact Widget responsive styles */
@media (max-width: 768px) {
  .md\:flex {
    display: block;
  }
  .md\:w-1\/2 {
    width: 100%;
  }
}

/* Section padding for mobile */
@media (max-width: 640px) {
  section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
