:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f8fafc 100%);
  color: #0f172a;
}

::selection {
  background: rgba(37, 99, 235, 0.2);
  color: #0f172a;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
}

.hero-panel {
  backdrop-filter: blur(8px);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.24);
}

.soft-pill {
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(10px);
}

.stat-card {
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
}

.hero-search input,
.hero-search select,
.hero-search button {
  transition: all 0.2s ease;
}

.hero-search input:focus,
.hero-search select:focus {
  border-color: #2563EB;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.14);
}

.hero-search button:hover {
  transform: translateY(-1px);
}

.offer-card {
  background: linear-gradient(135deg, rgba(255,255,255,0.14), rgba(255,255,255,0.08));
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(12px);
}

.theme-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(226,232,240,0.95);
}

.hero-slide {
  transition: opacity 0.8s ease;
}

.hero-slide:not(.active) {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
}

.accordion-content {
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.modal-open {
  overflow: hidden;
}
