/* =============================================
   CONTENT — Urgency, Reviews, Compare, Features
   ============================================= */

/* === URGENCY / DEADLINE BLOCK === */
.urgency {
  padding: 60px 32px;
  background: var(--wh);
  border-bottom: 1px solid rgba(200, 164, 78, .06);
  position: relative;
  overflow: hidden;
  background-image:
    repeating-linear-gradient(-45deg, transparent, transparent 50px, rgba(200, 164, 78, .025) 50px, rgba(200, 164, 78, .025) 51px),
    repeating-linear-gradient(90deg, transparent, transparent 100px, rgba(13, 107, 78, .012) 100px, rgba(13, 107, 78, .012) 101px);
}
.urgency-in { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1 }
.urgency h2 { font-family: var(--fd); font-size: clamp(26px, 3vw, 38px); margin-bottom: 8px }
.urgency h2 em { color: var(--red); font-style: italic }
.urgency-sub { font-size: 14px; color: var(--mu); margin-bottom: 32px; max-width: 460px; line-height: 1.6 }

.urgency-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px }
.ucard {
  border-radius: 14px;
  padding: 24px 20px;
  border: 1.5px solid transparent;
  transition: all .3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.ucard:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0, 0, 0, .07) }
.ucard.hot { background: linear-gradient(135deg, rgba(220, 53, 69, .06), rgba(220, 53, 69, .02)); border-color: rgba(220, 53, 69, .15) }
.ucard.warm { background: linear-gradient(135deg, rgba(245, 158, 11, .06), rgba(245, 158, 11, .02)); border-color: rgba(245, 158, 11, .15) }
.ucard.cool { background: linear-gradient(135deg, rgba(13, 107, 78, .06), rgba(13, 107, 78, .02)); border-color: rgba(13, 107, 78, .1) }
.ucard.chill { background: var(--ivory); border-color: rgba(200, 164, 78, .12) }

.ucard-icon { font-size: 28px; margin-bottom: 10px; display: block }
.ucard-time { font-family: var(--fd); font-size: 22px; color: var(--ch); margin-bottom: 4px }
.ucard-desc { font-size: 12px; color: var(--mu); line-height: 1.5; margin-bottom: 14px }
.ucard-price { display: flex; align-items: center; gap: 6px }
.ucard-from { font-size: 10px; color: var(--mu) }
.ucard-val { font-size: 16px; font-weight: 800; color: var(--em) }

.ucard-badge { position: absolute; top: 12px; right: 12px; font-size: 8px; font-weight: 800; letter-spacing: .5px; text-transform: uppercase; padding: 3px 6px; border-radius: 4px }
.badge-hot { background: var(--red); color: var(--wh) }
.badge-pop { background: var(--gold); color: var(--ch) }

/* Urgency decorative */
.urgency::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -60px;
  width: 360px;
  height: 360px;
  border: 2px solid rgba(200, 164, 78, .1);
  border-radius: 50%;
  pointer-events: none;
  box-shadow: 0 0 0 36px rgba(200, 164, 78, .035);
}
.urgency::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 48px;
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(13, 107, 78, .1);
  transform: rotate(45deg);
  pointer-events: none;
}


/* === REVIEWS CAROUSEL === */
.rev-section {
  padding: 80px 32px;
  background: var(--wh);
  border-bottom: 1px solid rgba(200, 164, 78, .06);
  overflow: hidden;
  position: relative;
  background-image: radial-gradient(rgba(200, 164, 78, .035) 1px, transparent 1px);
  background-size: 28px 28px;
  background-position: 14px 14px;
}
.rev-section-in { max-width: 1280px; margin: 0 auto; text-align: center }
.rev-section .stag { display: flex; width: fit-content }
.rev-section h2 { font-family: var(--fd); font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 8px }
.rev-desc { font-size: 15px; color: var(--mu); margin-bottom: 10px; max-width: 480px; line-height: 1.6; margin-left: auto; margin-right: auto }

.rev-platforms { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 32px; flex-wrap: wrap }
.rev-plat { display: flex; align-items: center; gap: 6px; background: var(--ivory); border: 1px solid rgba(200, 164, 78, .1); padding: 6px 14px; border-radius: 8px }
.rev-plat-logo { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0 }
.rev-plat-name { font-size: 12px; font-weight: 700; color: var(--ch) }
.rev-plat-stars { color: var(--gold); font-size: 12px }
.rev-plat-score { font-size: 12px; font-weight: 800; color: var(--em) }

.rev-track-wrap {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.rev-track { display: flex; gap: 16px; animation: scrollReviews 40s linear infinite; width: max-content }
.rev-track:hover { animation-play-state: paused }
@keyframes scrollReviews { 0% { transform: translateX(0) } 100% { transform: translateX(-50%) } }

.rev-card {
  width: 300px;
  flex-shrink: 0;
  background: var(--cream);
  border: 1px solid rgba(200, 164, 78, .08);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  transition: transform .3s;
}
.rev-card:hover { transform: translateY(-2px) }

.rev-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px }
.rev-stars { color: var(--gold); font-size: 14px; letter-spacing: 1px }
.rev-verified {
  font-size: 10px;
  font-weight: 700;
  color: var(--em);
  background: var(--em-s);
  padding: 3px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 3px;
}
.rev-verified svg { width: 11px; height: 11px }
.rev-text { font-size: 14px; color: var(--sl); line-height: 1.6; flex: 1; margin-bottom: 16px }
.rev-bottom { border-top: 1px solid rgba(200, 164, 78, .06); padding-top: 12px }
.rev-author { font-weight: 700; font-size: 13px; color: var(--ch) }
.rev-subject { font-size: 11px; color: var(--mu); margin-top: 2px }

/* Reviews decorative */
.rev-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 3% 12%, rgba(13, 107, 78, .05) 0%, transparent 35%),
              radial-gradient(circle at 97% 88%, rgba(200, 164, 78, .06) 0%, transparent 30%);
  pointer-events: none;
}
.rev-section::after {
  content: '';
  position: absolute;
  top: 20px;
  right: 28px;
  width: 96px;
  height: 96px;
  background-image: radial-gradient(rgba(200, 164, 78, .16) 2px, transparent 2px);
  background-size: 14px 14px;
  pointer-events: none;
  border-radius: 8px;
}


/* === COMPARE === */
.cmp {
  padding: 80px 32px;
  background: var(--cream);
  border-bottom: 1px solid rgba(200, 164, 78, .06);
  position: relative;
  overflow: hidden;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 60px, rgba(13, 107, 78, .015) 60px, rgba(13, 107, 78, .015) 61px);
}
.cmp-in { max-width: 900px; margin: 0 auto }
.cmp h2 { font-family: var(--fd); font-size: clamp(28px, 3.5vw, 42px); line-height: 1.15; margin-bottom: 10px }
.cmp h2 em { color: var(--em); font-style: italic }
.cmp-d { font-size: 15px; color: var(--mu); max-width: 500px; line-height: 1.6; margin-bottom: 40px }

.ct {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(200, 164, 78, .1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, .03);
}
.ct thead th { padding: 16px 18px; text-align: left; font-size: 12px; font-weight: 700; background: var(--ivory); border-bottom: 1px solid rgba(200, 164, 78, .08) }
.ct .ca { text-align: center; color: var(--mu); width: 180px }
.ct .cs { text-align: center; color: var(--em); width: 180px }
.ct tbody td { padding: 14px 18px; font-size: 13px; border-bottom: 1px solid rgba(200, 164, 78, .04); background: var(--wh); vertical-align: middle }
.ct tbody tr:last-child td { border-bottom: none }
.cn { font-weight: 600 }
.csub { font-size: 11px; color: var(--mu); margin-top: 1px }
.vb { text-align: center; color: var(--mu); font-size: 12px }
.vb .x { color: var(--red); font-weight: 700; font-size: 14px }
.vg { text-align: center; color: var(--em); font-size: 12px; font-weight: 600 }
.swb { background: rgba(13, 107, 78, .02) }

/* Compare decorative */
.cmp::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -90px;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(200, 164, 78, .07);
  border-radius: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.cmp::after {
  content: '';
  position: absolute;
  bottom: 36px;
  right: 28px;
  width: 64px;
  height: 64px;
  background-image: radial-gradient(rgba(13, 107, 78, .1) 1.5px, transparent 1.5px);
  background-size: 11px 11px;
  pointer-events: none;
  border-radius: 6px;
}


/* === FEATURES === */
.wh {
  padding: 80px 32px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  background-image: radial-gradient(rgba(13, 107, 78, .02) 1px, transparent 1px),
                    radial-gradient(rgba(13, 107, 78, .02) 1px, transparent 1px);
  background-size: 32px 32px;
  background-position: 0 0, 16px 16px;
}
.wh h2 { font-family: var(--fd); font-size: clamp(28px, 3.5vw, 42px); margin-bottom: 10px }
.whd { font-size: 15px; color: var(--mu); max-width: 480px; line-height: 1.6; margin-bottom: 48px }

.fg2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px }
.fc {
  background: var(--wh);
  border: 1px solid rgba(200, 164, 78, .06);
  border-radius: 14px;
  padding: 28px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.fc::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--em), var(--gold));
  opacity: 0;
  transition: opacity .3s;
}
.fc:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(0, 0, 0, .05) }
.fc:hover::before { opacity: 1 }

.fic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--em), var(--em-l));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--wh);
}
.fc h3 { font-family: var(--fd); font-size: 17px; margin-bottom: 6px }
.fc p { font-size: 13px; line-height: 1.6; color: var(--mu) }

/* Features decorative */
.wh::before {
  content: '';
  position: absolute;
  top: 28px;
  right: 20px;
  width: 80px;
  height: 80px;
  border-top: 2px solid rgba(200, 164, 78, .14);
  border-right: 2px solid rgba(200, 164, 78, .14);
  border-radius: 0 12px 0 0;
  pointer-events: none;
}
.wh::after {
  content: '';
  position: absolute;
  bottom: 28px;
  left: 20px;
  width: 80px;
  height: 80px;
  border-bottom: 2px solid rgba(13, 107, 78, .1);
  border-left: 2px solid rgba(13, 107, 78, .1);
  border-radius: 0 0 0 12px;
  pointer-events: none;
}
