/* --- Hero --- */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.hero-bg-glow {
  position: absolute;
  top: -20%;
  right: -15%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-text { text-align: left; }

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cinnabar);
  background: rgba(255, 107, 53, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-btn);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 107, 53, 0.12);
}

.label-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cinnabar);
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  margin-bottom: 20px;
  color: var(--slate-900);
  letter-spacing: -0.04em;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--slate-600);
  max-width: 90%;
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.7;
}

.cta-group {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, var(--cinnabar), var(--amber));
  color: #fff;
  padding: 14px 32px;
  border-radius: var(--radius-btn);
  font-weight: 800;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
  box-shadow: 0 6px 24px rgba(255, 107, 53, 0.3);
  border: none;
  cursor: pointer;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.secondary-btn {
  padding: 14px 26px;
  border-radius: var(--radius-btn);
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--slate-50);
  border: 1px solid var(--border);
  color: var(--slate-700);
  transition: all 0.2s;
}

.secondary-btn:hover {
  background: var(--surface);
  border-color: rgba(255, 107, 53, 0.2);
  color: var(--cinnabar);
}

/* --- Hero Proof Line --- */
.hero-proof {
  margin-top: 32px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--slate-600);
  letter-spacing: -0.01em;
}

.hero .cta-reassurance {
  text-align: left;
}

/* --- Phone Frame (Samsung-style) --- */
.phone-frame {
  position: relative;
}

.phone-bezel {
  width: 220px;
  background: #000;
  border-radius: 18px;
  padding: 3px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

.phone-bezel img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.phone-notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: #000;
  border-radius: 50%;
  z-index: 3;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.04);
}

/* --- Hero Phones (stacked deck) --- */
.hero-phones {
  position: relative;
  width: 340px;
  height: 480px;
  margin: 0 auto;
}

.hero-phones .phone-frame {
  position: absolute;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-phones .phone-front {
  z-index: 3;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

.hero-phones .phone-front .phone-bezel {
  width: 220px;
  padding: 3px;
}

.hero-phones .phone-back {
  z-index: 1;
  top: 30px;
  opacity: 0.6;
  filter: blur(0.5px);
}

.hero-phones .phone-back-left {
  left: 10px;
  transform: rotate(-6deg);
}

.hero-phones .phone-back-right {
  right: 10px;
  transform: rotate(6deg);
}

.hero-phones .phone-back .phone-bezel {
  width: 180px;
}

@media (hover: hover) {
  .hero-phones:hover .phone-front {
    transform: translateX(-50%) translateY(-8px);
  }

  .hero-phones:hover .phone-back-left {
    transform: rotate(-12deg) translateX(-16px);
    opacity: 0.8;
  }

  .hero-phones:hover .phone-back-right {
    transform: rotate(12deg) translateX(16px);
    opacity: 0.8;
  }

  .hero-phones:hover .phone-back {
    filter: none;
  }
}
