.features-hero {
  padding-top: var(--space-12);
}

.features-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: var(--space-10);
  align-items: center;
}

.features-hero-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.features-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.features-hero-meta {
  font-size: var(--font-size-sm);
  color: var(--gray-500);
}

.features-hero-media {
  position: relative;
}

.features-hero-media-main {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.4), transparent 60%), radial-gradient(circle at bottom right, rgba(249, 115, 22, 0.45), transparent 55%);
}

.features-hero-media-main picture {
  display: block;
}

.features-hero-media-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-hero-seal {
  position: absolute;
  bottom: 16px;
  left: 18px;
  padding: 10px 14px;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.94);
  color: #fefce8;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.7);
}

.features-hero-seal-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.features-hero-seal-score-main {
  font-size: 22px;
  font-weight: 700;
  color: var(--color-warning);
}

.features-hero-seal-score-sub {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.features-hero-seal-meta {
  font-size: 10px;
  color: rgba(226, 232, 240, 0.9);
}

.features-hero-caption {
  margin-top: var(--space-3);
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

.btn-play-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background: rgba(15, 23, 42, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.features-grid-row {
  margin-top: var(--space-8);
  align-items: stretch;
}

.features-grid-row--reverse {
  direction: rtl;
}

.features-grid-row--reverse > * {
  direction: ltr;
}

.features-card-media {
  align-self: center;
}

.features-card-media picture,
.features-card-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.features-card-meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--gray-500);
}

.features-inline-media {
  margin-bottom: var(--space-4);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.features-inline-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.features-mechanics-grid {
  margin-top: var(--space-6);
}

.features-maps .features-grid-row {
  margin-top: var(--space-6);
}

.features-spec-list {
  margin-top: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.features-spec-list strong {
  color: var(--color-text);
}

.features-download-media {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  justify-content: center;
}

.features-download-btn {
  text-decoration: none;
}

.features-google-badge {
  max-width: 220px;
}

.features-download-note {
  font-size: var(--font-size-xs);
  color: var(--gray-500);
}

.features-cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.features-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
}

.features-meta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--space-8);
}

.features-meta-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--font-size-sm);
}

.features-meta-links a {
  color: var(--gray-600);
}

.features-meta-links a:hover {
  color: var(--color-secondary);
}

@media (max-width: 960px) {
  .features-hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  .features-hero-media {
    order: -1;
  }
}

@media (max-width: 768px) {
  .features-meta-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .features-grid-row--reverse {
    direction: ltr;
  }
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}

.btn-arrow svg,
.link-arrow svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.btn:hover .btn-arrow svg,
a:hover .link-arrow svg {
  transform: translate(3px, -3px);
}
