* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background: #f5f0e8;
  color: #1e293b;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f5f0e8;
}
::-webkit-scrollbar-thumb {
  background: #1e4a31;
  border-radius: 10px;
}
.card-lift {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s;
}
.card-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(30, 74, 49, 0.12);
}
.pulse-slow {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
.input-field {
  transition: border-color 0.3s, box-shadow 0.3s;
}
.input-field:focus {
  outline: none;
  border-color: #1e4a31;
  box-shadow: 0 0 0 3px rgba(30, 74, 49, 0.1);
}
input[type='range'] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 10px;
  background: #dcefe0;
  outline: none;
}
input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e4a31;
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
input[type='range']::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1e4a31;
  cursor: pointer;
  border: 3px solid white;
}
.calc-checkbox {
  width: 20px;
  height: 20px;
  accent-color: #1e4a31;
  cursor: pointer;
}
.testimonial-scroll::-webkit-scrollbar {
  height: 6px;
}
.testimonial-scroll::-webkit-scrollbar-track {
  background: transparent;
}
.testimonial-scroll::-webkit-scrollbar-thumb {
  background: #dcefe0;
  border-radius: 10px;
}
.mobile-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  background: rgba(245, 240, 232, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(30, 74, 49, 0.1);
  padding: 12px 16px;
  display: none;
}
@media (max-width: 768px) {
  .mobile-cta {
    display: flex;
    gap: 12px;
  }
  body {
    padding-bottom: 80px;
  }
}
