/* Hero premium — Stripe / Notion / Calendly pattern */

.hero--premium {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: calc(100vh - 72px);
  display: flex;
  flex-direction: column;
  background: radial-gradient(ellipse 85% 75% at 50% 0%, #e8faf8 0%, #f8fcfc 55%, #f8fcfc 100%);
}

.hero--premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(15, 143, 134, 0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.35;
}

.hero--premium .hero-main {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0 40px;
}

.hero--premium .hero-grid {
  gap: 48px 64px;
  align-items: center;
}

/* Badge */
.hero-badge--premium {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 14px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 184, 176, 0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--primary-dark);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.3;
  box-shadow: 0 2px 12px rgba(15, 143, 134, 0.08);
}

.hero-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.12);
  color: #25d366;
  flex-shrink: 0;
}

.hero-badge__icon svg {
  width: 16px;
  height: 16px;
}

/* Headline */
.hero--premium h1 {
  margin: 0 0 20px;
  font-size: clamp(2rem, 4.8vw, 3.35rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--navy);
  max-width: 13ch;
}

.hero-title-accent {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero--premium .hero-subtitle {
  margin: 0 0 28px;
  max-width: 480px;
  font-size: clamp(1rem, 2vw, 1.125rem);
  line-height: 1.65;
  color: var(--text-muted);
}

/* Benefits 2x2 */
.hero-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 20px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  max-width: 420px;
}

.hero-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

.hero-benefits__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 6px;
  background: rgba(46, 196, 182, 0.12);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

/* CTAs */
.hero--premium .hero-actions {
  gap: 14px;
  margin-bottom: 16px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: #fff;
  box-shadow:
    0 4px 14px rgba(15, 143, 134, 0.35),
    0 1px 3px rgba(15, 23, 42, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 8px 24px rgba(15, 143, 134, 0.4),
    0 2px 6px rgba(15, 23, 42, 0.1);
  color: #fff;
}

.hero-cta-primary svg {
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease;
}

.hero-cta-primary:hover svg {
  transform: translateX(3px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 12px;
  border: 1.5px solid rgba(15, 143, 134, 0.35);
  background: rgba(255, 255, 255, 0.6);
  color: var(--primary-dark);
  backdrop-filter: blur(4px);
  transition:
    background 0.2s ease,
    border-color 0.2s ease;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--primary);
  color: var(--primary-dark);
}

.hero-microcopy {
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 420px;
}

.hero-trial-highlight {
  margin: 0 0 12px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 143, 134, 0.22);
  background: linear-gradient(135deg, rgba(209, 250, 229, 0.65) 0%, rgba(236, 253, 245, 0.9) 100%);
  max-width: 320px;
}

.hero-trial-highlight__title {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.hero-trial-highlight__sub {
  margin: 0;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.hero-trial-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  max-width: 420px;
}

.hero-trial-checks li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.hero-trial-checks li span {
  color: var(--primary);
  font-weight: 800;
}

/* Mockup composition */
.hero-visual--premium {
  position: relative;
  min-height: 420px;
}

.hero-mockup {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
}

.hero-mockup__glow {
  position: absolute;
  inset: 10% 5% 5%;
  background: radial-gradient(ellipse at center, rgba(46, 196, 182, 0.22) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
}

.hero-mockup__window {
  position: relative;
  z-index: 1;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.04),
    0 24px 64px rgba(15, 143, 134, 0.18),
    0 48px 96px rgba(15, 23, 42, 0.08);
}

.hero-mockup__titlebar {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px 16px;
  background: linear-gradient(180deg, #f8fafb 0%, #f1f5f5 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.hero-mockup__titlebar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.hero-mockup__titlebar span:nth-child(1) {
  background: #ff5f57;
}

.hero-mockup__titlebar span:nth-child(2) {
  background: #febc2e;
}

.hero-mockup__titlebar span:nth-child(3) {
  background: #28c840;
}

.hero-mockup__screenshot {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  box-shadow: none;
}

/* Floating automation cards */
.hero-float-card {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  max-width: 220px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 4px 16px rgba(15, 23, 42, 0.08),
    0 12px 32px rgba(15, 143, 134, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: hero-float 5s ease-in-out infinite;
}

.hero-float-card__emoji {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.hero-float-card__body strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}

.hero-float-card__body p {
  margin: 0;
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.hero-float-card--1 {
  top: 8%;
  left: -8%;
  animation-delay: 0s;
}

.hero-float-card--2 {
  top: 42%;
  right: -10%;
  animation-delay: 1.2s;
}

.hero-float-card--3 {
  bottom: 6%;
  left: 4%;
  animation-delay: 2.4s;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* Social proof strip */
.hero-proof {
  position: relative;
  z-index: 1;
  margin-top: auto;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-proof__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 28px 0;
}

.hero-stat {
  text-align: center;
}

.hero-stat__value {
  display: block;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary-dark);
  line-height: 1.2;
}

.hero-stat__label {
  display: block;
  margin-top: 4px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  line-height: 1.35;
}

/* Responsive */
@media (max-width: 960px) {
  .hero--premium {
    min-height: auto;
  }

  .hero--premium .hero-main {
    padding: 40px 0 32px;
  }

  .hero--premium .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero--premium h1 {
    max-width: none;
  }

  .hero-visual--premium {
    min-height: auto;
  }

  .hero-mockup {
    max-width: 520px;
  }

  .hero-float-card--1 {
    left: 0;
    top: 4%;
  }

  .hero-float-card--2 {
    right: 0;
  }

  .hero-float-card--3 {
    left: 8%;
    bottom: 2%;
  }

  .hero-proof__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 24px 0;
  }
}

@media (max-width: 640px) {
  .hero--premium .hero-main {
    padding: 32px 0 24px;
  }

  .hero-benefits {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .hero--premium .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    justify-content: center;
    width: 100%;
  }

  .hero-float-card {
    max-width: 180px;
    padding: 10px 12px;
  }

  .hero-float-card--1 {
    left: -4%;
  }

  .hero-float-card--2 {
    right: -4%;
  }

  .hero-proof__grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-stat__value {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float-card {
    animation: none;
  }
}
