* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

body {
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #fff;
  -webkit-font-smoothing: antialiased
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Inter', sans-serif
}

header {
  position: sticky;
  top: 0;
  z-index: 100
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease, transform .55s ease
}

.reveal.visible {
  opacity: 1;
  transform: none
}

.nav-link {
  position: relative
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #752226;
  transition: width .3s
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%
}

.sec-label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #752226;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase
}

.sec-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #752226;
  flex-shrink: 0
}

.img-zoom {
  overflow: hidden
}

.img-zoom img {
  transition: transform .5s ease
}

.img-zoom:hover img {
  transform: scale(1.04)
}

.group:hover .translate-y-full {
  transform: translateY(0)
}

.timeline-item {
  position: relative;
  padding-left: 40px
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 30px;
  bottom: 0;
  width: 2px;
  background: #e5e7eb
}

.timeline-item:last-child::before {
  display: none
}

.timeline-dot {
  position: absolute;
  left: 0;
  top: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #181F4D;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #181F4D
}

.timeline-dot.red {
  background: #752226;
  box-shadow: 0 0 0 2px #752226
}

.value-card {
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.value-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(24, 31, 77, .1);
  border-color: #181F4D
}

.feat-card {
  transition: transform .22s, box-shadow .22s
}

.feat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(24, 31, 77, .12)
}

@keyframes ticker {
  from {
    transform: translateX(0)
  }

  to {
    transform: translateX(-50%)
  }
}

.ticker-inner {
  display: flex;
  animation: ticker 32s linear infinite;
  width: max-content
}

.ticker-inner:hover {
  animation-play-state: paused
}

.faq-icon {
  transition: transform .3s
}

.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 200
}

.wa-float a {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform .2s
}

.wa-float a:hover {
  transform: translateY(-2px)
}

.stat-card {
  transition: border-color .25s, transform .25s
}

.stat-card:hover {
  border-color: #752226;
  transform: translateY(-2px)
}
