/* ── HERO ─────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 60px 80px;
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(242,68,5,0.13) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(140,39,3,0.10) 0%, transparent 60%),
    linear-gradient(160deg, #0D0D0D 0%, #1a0a05 100%);
}

.hero-grid-overlay {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.6) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.6) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content { position: relative; z-index: 1; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(242,68,5,0.12); border: 1px solid rgba(242,68,5,0.3);
  border-radius: 100px; padding: 6px 16px;
  font-size: 13px; font-weight: 500; color: var(--primary-color);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}
.hero-badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary-color); animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.0; font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}
.hero-title .accent { color: var(--primary-color); }
.hero-title em { font-style: italic; }

.hero-desc {
  font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.6);
  max-width: 520px; margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 0.7s 0.3s ease both;
}
.btn-hero-primary {
  background: var(--primary-color); color: #fff;
  padding: 16px 32px; border-radius: 10px;
  font-size: 16px; font-weight: 500; text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 8px 32px rgba(242,68,5,0.35);
}
.btn-hero-primary:hover {
  background: var(--hover-color); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(242,68,5,0.45);
}
.btn-hero-secondary {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 16px; font-weight: 400;
  display: flex; align-items: center; gap: 8px;
  padding: 16px 0;
  transition: color 0.2s;
}
.btn-hero-secondary:hover { color: #fff; }
.btn-hero-secondary svg { transition: transform 0.2s; }
.btn-hero-secondary:hover svg { transform: translateX(4px); }

.hero-stats {
  position: relative; z-index: 1;
  display: flex; gap: 0; margin-top: 72px;
  animation: fadeUp 0.7s 0.4s ease both;
}
.hero-stat {
  padding: 0 40px 0 0;
  border-right: 1px solid rgba(255,255,255,0.1);
  margin-right: 40px;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 36px; font-weight: 700;
  color: var(--primary-color);
  display: block;
}
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.4); margin-top: 2px; }

.hero-visual {
  position: absolute; right: 60px; top: 50%; transform: translateY(-50%);
  z-index: 1; pointer-events: none;
  animation: floatIn 0.9s 0.5s ease both;
}
.hero-card-stack { position: relative; width: 340px; height: 380px; }
.hcard {
  position: absolute;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  backdrop-filter: blur(8px);
}
.hcard-1 { width: 300px; height: 320px; top: 40px; left: 40px; background: rgba(242,68,5,0.08); border-color: rgba(242,68,5,0.2); }
.hcard-2 { width: 280px; height: 300px; top: 20px; left: 20px; animation: float1 4s ease-in-out infinite; }
.hcard-3 { width: 320px; height: 340px; top: 0; left: 0; padding: 28px; animation: float2 5s ease-in-out infinite; }
.hcard-inner { height: 100%; display: flex; flex-direction: column; gap: 20px; }
.hcard-logo { width: 44px; height: 44px; background: var(--primary-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Playfair Display', serif; font-weight: 900; font-size: 20px; color: #fff; }
.hcard-title { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.hcard-lines { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.hcard-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.hcard-line.l1 { width: 85%; }
.hcard-line.l2 { width: 65%; }
.hcard-line.l3 { width: 75%; }
.hcard-tags { display: flex; gap: 8px; margin-top: auto; }
.hcard-tag { font-size: 11px; font-weight: 500; padding: 5px 12px; border-radius: 100px; }
.hcard-tag.t1 { background: rgba(242,68,5,0.2); color: var(--primary-color); }
.hcard-tag.t2 { background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.5); }

@keyframes float1 { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(-8px)} }
@keyframes float2 { 0%,100%{transform:translateY(0px)} 50%{transform:translateY(6px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
@keyframes floatIn { from{opacity:0;transform:translateY(-50%) translateX(30px)} to{opacity:1;transform:translateY(-50%) translateX(0)} }

@media (max-width: 1100px) {
  .hero-visual { display: none; }
  #hero { padding: 120px 32px 80px; }
}
@media (max-width: 768px) {
  #hero { padding: 100px 20px 60px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stat { border-right: none; padding-right: 0; margin-right: 0; }
}
