/* ========================================
   HOMEPAGE-ONLY STYLES
   ======================================== */

/* === HERO === */
.hero {
  padding: 160px 0 100px;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(27,106,201,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content { max-width: 540px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  border: 1px solid rgba(27,106,201,0.12);
  border-radius: 100px;
  padding: 5px 14px 5px 8px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.3px;
  animation: fadeUp 0.6s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--success);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.5px;
  color: var(--text-primary);
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease 0.1s both;
}
.hero h1 em {
  color: var(--accent);
  font-style: normal;
}
.hero-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 36px;
  animation: fadeUp 0.6s ease 0.2s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  animation: fadeUp 0.6s ease 0.3s both;
}

/* === Hero Visual === */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

/* === TRUST BAR === */
.trust-bar {
  padding: 48px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-white);
}
.trust-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.trust-icon {
  width: 36px; height: 36px;
  background: var(--bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid var(--border-light);
}
.trust-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
.trust-text span {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

/* === Keyframe Animations === */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE (homepage-specific) === */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; }
}
@media (max-width: 768px) {
  .hero { padding: 120px 0 64px; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .trust-inner { gap: 32px; }
}
