/* Hidden Anylaw Page Styles */

/* Hero */
.hero.anylaw-hero {
  background: linear-gradient(135deg, #e8eef7 0%, #ffffff 100%);
  padding: 56px 0; /* compact */
}

.anylaw-hero-content {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
}

.anylaw-logo {
  height: 84px;
  width: auto;
  margin-bottom: 16px;
}

.anylaw-hero h1 {
  margin: 0 0 8px;
  color: var(--primary-color);
}

.anylaw-hero .subheadline {
  max-width: 760px;
  margin: 0 auto 16px;
  color: var(--text-color);
}

.anylaw-hero-highlights {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.anylaw-hero-highlights .highlight {
  background: #fff;
  border: 1px solid #eef1f5;
  border-radius: 10px;
  padding: 10px 14px;
  min-width: 180px;
}

.anylaw-hero-highlights .value {
  display: block;
  font-weight: 700;
  color: var(--primary-color);
  font-size: 18px;
}

.anylaw-hero-highlights .label {
  display: block;
  font-size: 12px;
  color: #6a778b;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

/* Feature list */
.feature-list {
  margin: 12px 0 0;
  padding-left: 18px;
}

.feature-list li { margin: 6px 0; }

/* Video demo placeholder */
.video-demo .video-frame {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid #e7ecf3;
  background: linear-gradient(180deg, #e9f1ff 0%, #f7f9fc 100%);
  display: grid;
  place-items: center;
}
.video-demo .play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #dfe6f2;
  box-shadow: 0 6px 16px rgba(16,24,40,0.15);
  position: relative;
}
.video-demo .play-btn::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 18px solid var(--primary-color);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.video-demo .video-caption {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: #3b4656;
  font-size: 12px;
  background: rgba(255,255,255,0.85);
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid #e7ecf3;
}
