.hero {
  padding: 160px 0 100px;
  background:
    radial-gradient(circle at top left, rgba(247, 148, 29, 0.12), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: 60px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(25, 55, 98, 0.08);
  border: 1px solid rgba(25, 55, 98, 0.12);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(247, 148, 29, 0.14);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--slate-900);
  margin-bottom: 1.2rem;
}

.hero__sub {
  font-size: 1.08rem;
  color: var(--slate-600);
  max-width: 620px;
  margin-bottom: 1.5rem;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  list-style: none;
  padding: 0;
}

.hero__highlights li {
  background: #fff;
  border: 1px solid rgba(25, 55, 98, 0.1);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}

.hero__highlights strong {
  display: block;
  color: var(--slate-900);
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.hero__highlights span {
  font-size: 0.9rem;
  color: var(--slate-600);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero__caption {
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.hero__mockup {
  display: flex;
  justify-content: flex-end;
}

/* ── Dashboard mockup ── */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.hero__dashboard {
  width: 100%;
  max-width: 560px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(25, 55, 98, 0.08);
  box-shadow: 0 8px 40px rgba(25, 55, 98, 0.1), 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}

.hero__dash-topbar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
}

.hero__dash-dots {
  display: flex;
  gap: 5px;
}

.hero__dash-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

.hero__dash-dots span:first-child { background: #ff5f57; }
.hero__dash-dots span:nth-child(2) { background: #ffbd2e; }
.hero__dash-dots span:nth-child(3) { background: #27c93f; }

.hero__dash-title {
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.9;
}

.hero__dash-body {
  display: grid;
  grid-template-columns: 48px 1fr;
}

.hero__dash-sidebar {
  background: rgba(25, 55, 98, 0.04);
  border-right: 1px solid rgba(25, 55, 98, 0.06);
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hero__dash-nav-item {
  width: 32px;
  height: 6px;
  border-radius: 3px;
  background: rgba(25, 55, 98, 0.1);
}

.hero__dash-nav-item--active {
  background: var(--accent);
}

.hero__dash-main {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero__dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hero__dash-stat {
  background: rgba(25, 55, 98, 0.03);
  border: 1px solid rgba(25, 55, 98, 0.06);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero__dash-stat-label {
  font-size: 0.62rem;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
}

.hero__dash-stat-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
}

.hero__dash-chart {
  background: rgba(25, 55, 98, 0.02);
  border-radius: 8px;
  padding: 10px;
  border: 1px solid rgba(25, 55, 98, 0.05);
}

.hero__dash-chart-svg {
  width: 100%;
  height: 60px;
}

.hero__dash-table {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__dash-row {
  display: grid;
  grid-template-columns: 1fr 40px 64px;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(25, 55, 98, 0.05);
  font-size: 0.72rem;
  color: var(--slate-600);
}

.hero__dash-row--header {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.62rem;
  color: var(--slate-400);
  border-bottom-color: rgba(25, 55, 98, 0.08);
}

.hero__dash-bar {
  display: block;
  height: 6px;
  border-radius: 3px;
  background: var(--primary);
  opacity: 0.2;
}

.hero__dash-badge {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  text-align: center;
}

.hero__dash-badge--green {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
}

.hero__dash-badge--orange {
  background: rgba(247, 148, 29, 0.12);
  color: #d97706;
}

/* Floating cards */
.hero__floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--slate-700);
  box-shadow: 0 4px 20px rgba(25, 55, 98, 0.12);
  border: 1px solid rgba(25, 55, 98, 0.06);
  animation: floatBounce 3s ease-in-out infinite;
}

.hero__floating-card--1 {
  bottom: 12%;
  left: -24px;
  animation-delay: 0s;
}

.hero__floating-card--2 {
  top: 8%;
  right: -16px;
  animation-delay: 1.5s;
}

@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.product-rail {
  padding: 0 0 60px;
  background: linear-gradient(180deg, #fff 0%, #f9fbfe 100%);
}

.product-rail__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.product-rail__card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(25, 55, 98, 0.08);
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(25, 55, 98, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-rail__card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 148, 29, 0.26);
  box-shadow: 0 22px 48px rgba(25, 55, 98, 0.12);
}

.product-rail__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.product-rail__card strong {
  font-family: var(--font-display);
  font-size: 1.28rem;
  color: var(--slate-900);
  letter-spacing: -0.03em;
}

.product-rail__card p {
  margin: 0;
  color: var(--slate-600);
  line-height: 1.65;
  font-size: 0.95rem;
}

.hero__price-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  width: 100%;
  max-width: 520px;
}

.hero__price-card {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(25, 55, 98, 0.08);
  box-shadow: 0 4px 24px rgba(25, 55, 98, 0.08), 0 1px 3px rgba(0,0,0,0.04);
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero__price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(25, 55, 98, 0.12), 0 2px 6px rgba(0,0,0,0.06);
}

.hero__price-card--accent {
  border-color: rgba(247, 148, 29, 0.3);
  background: linear-gradient(180deg, #fff 0%, rgba(247, 148, 29, 0.03) 100%);
}

.hero__price-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.4rem;
}

.hero__price-card-icon--blue {
  background: rgba(25, 55, 98, 0.08);
  color: var(--primary);
}

.hero__price-card-icon--accent {
  background: rgba(247, 148, 29, 0.1);
  color: var(--accent);
}

.hero__price-card strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--slate-900);
}

.hero__price-card-for {
  font-size: 0.85rem;
  color: var(--slate-500);
}

.hero__price-card-price {
  display: flex;
  flex-direction: column;
  margin: 0.4rem 0 0.2rem;
}

.hero__price-card-from {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent);
}

.hero__price-card-amount {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.hero__price-card-amount small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate-400);
}

.hero__price-card-tiers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-600);
}

.hero__tier-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero__price-card-trial {
  font-size: 0.75rem;
  font-weight: 600;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  width: fit-content;
  margin: 0.3rem 0 0.2rem;
}

.hero__price-card .btn {
  margin-top: auto;
}
