.hero {
  position: relative;
  padding: clamp(36px, 6vw, 80px) 0 clamp(40px, 6vw, 80px);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: 24px;
}
.hero h1 { max-width: 820px; }
.hero h1 em { font-style: normal; background: linear-gradient(135deg, var(--red), #ff7a85); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lede { max-width: 520px; color: var(--muted); font-size: clamp(0.98rem, 1.2vw, 1.08rem); }
.hero-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 360px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: radial-gradient(260px 180px at 50% 30%, rgba(255,31,46,0.28), transparent 65%), linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.hero-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.96;
  filter: none;
  animation: none;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

.featured {
  padding: clamp(30px, 5vw, 60px) 0;
}
.featured-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }
.featured-head h2 { max-width: 520px; }
.featured-grid { display: grid; gap: 16px; }
.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease), border-color 0.3s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); border-color: rgba(255, 31, 46, 0.35); }
.feature-card .media {
  aspect-ratio: 4 / 3;
  background: var(--surface-2) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.feature-card .media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(8, 8, 13, 0.85) 100%);
}
.feature-card .body { padding: 18px 20px 20px; position: relative; }
.feature-card h3 { font-size: 1.2rem; margin-bottom: 4px; }
.feature-card .price { font-family: var(--display); font-size: 1.15rem; }

.closing {
  padding: clamp(40px, 6vw, 70px) 0 0;
}
.closing-card {
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(500px 220px at 80% 0%, rgba(255, 31, 46, 0.22), transparent 70%),
    linear-gradient(180deg, var(--surface-2) 0%, var(--surface) 100%);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.closing-card h2 { max-width: 560px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.closing-card p { color: var(--muted); margin-top: 10px; max-width: 480px; }
.closing-card .btn { margin-top: 18px; }

@media (min-width: 820px) {
  .hero-inner { grid-template-columns: 1.3fr 1fr; align-items: center; gap: 40px; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
}
