/* ===================== HERO ===================== */
#hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #ff4e2e 0%, #ff7c5c 55%, #ffad5c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px 60px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}
.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.hero-logo-img {
  width: 80px;
  max-width: 100%;
  margin-bottom: 28px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}
.hero-h1 {
  font-size: 52px;
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.hero-h1 span {
  display: block;
  color: rgba(255,255,255,0.75);
}
.hero-slogan {
  font-size: 17px;
  font-weight: 400;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  line-height: 1.5;
}
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-stars {
  color: #FFD700;
  font-size: 16px;
  letter-spacing: 1px;
}
.hero-proof-text {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.hero-cta-label {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  font-weight: 500;
}
.app-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.app-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.app-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(0,0,0,0.25); }
.app-btn svg { width: 22px; height: 22px; fill: var(--primary); }
.app-btn.secondary {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.35);
  box-shadow: none;
}
.app-btn.secondary:hover { background: rgba(255,255,255,0.25); }
.app-btn.secondary svg { fill: #fff; }

.hero-right {
  flex: 0 0 auto;
}
.hero-phone {
  width: 280px;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.3));
  border-radius: 36px;
}

/* Deco shapes */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.hero-circle-1 { width: 600px; height: 600px; top: -200px; right: -200px; }
.hero-circle-2 { width: 350px; height: 350px; bottom: -100px; left: -100px; }
.hero-circle-3 { width: 200px; height: 200px; top: 30%; left: 35%; background: rgba(255,255,255,0.04); }
