html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

.feature-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  border-color: #d4d4d4;
  box-shadow: 0 18px 40px -26px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.icon-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.circle-arrow {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #fafafa;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #171717;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.feature-card:hover .circle-arrow {
  background: #171717;
  color: #fff;
  border-color: #171717;
}

.process-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 9999px;
  background: #171717;
  border: 1px solid #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 20px 40px -24px rgba(0, 0, 0, 0.55);
}

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #737373;
  margin-bottom: 0.5rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  padding: 1.25rem;
  background: #fafafa;
  border: 1px solid #f5f5f5;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-card:hover {
  background: #f5f5f5;
  border-color: #d4d4d4;
  transform: translateY(-1px);
}

.faq-item {
  background: #fafafa;
  border: 1px solid #e5e5e5;
  overflow: hidden;
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  cursor: pointer;
  list-style: none;
  font-weight: 500;
  color: #171717;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-toggle {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background: #fff;
  border: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #737373;
  transition: transform 180ms ease;
}

.faq-item[open] .faq-toggle {
  transform: rotate(180deg);
}

.faq-body {
  padding: 0 1.5rem 1.5rem;
  background: #fff;
  color: #525252;
  font-size: 0.9375rem;
  line-height: 1.75;
}

.word-slide,
.testimonial-card {
  will-change: transform, opacity;
}
