/* =====================================================
   HERO SECTION
   ===================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background-color: var(--white);
  overflow: hidden;
}

/* Subtle grid pattern background */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Yellow accent top-right blob */
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle at center, rgba(245,200,0,0.20) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 4rem 0 5rem;
}

/* LEFT SIDE */
.hero__content { }

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero__eyebrow-dot {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245,200,0,0.6); }
  50%       { box-shadow: 0 0 0 8px rgba(245,200,0,0); }
}

.hero__eyebrow-text {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-700);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.hero__title mark {
  background: none;
  color: var(--yellow-dark);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(135deg, var(--yellow) 0%, var(--yellow-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero__subtitle {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 520px;
  line-height: 1.65;
  margin-bottom: 2.2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

/* Trust pills below buttons */
.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gray-700);
}

.hero__trust-item svg {
  color: var(--yellow-dark);
  flex-shrink: 0;
}

/* RIGHT SIDE — Visual card */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-lg), 0 0 0 1px var(--gray-100);
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero__card-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.hero__card-icon-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.hero__card-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 0.75rem;
  text-align: center;
  transition: var(--transition);
}
.hero__card-icon-item:hover {
  background: var(--yellow-light);
  transform: scale(1.03);
}

.hero__card-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--yellow);
  font-size: 1.3rem;
}

.hero__card-icon-label {
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--gray-800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero__card-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1.5px solid var(--gray-100);
  padding-top: 1.25rem;
  gap: 1rem;
}

.hero__card-stat-item { text-align: center; }
.hero__card-stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--black);
}
.hero__card-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero__card-divider {
  width: 1px;
  height: 36px;
  background: var(--gray-200, #ddd);
}

/* Floating accent badges on visual */
.hero__floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 0.6rem 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}
.hero__floating-badge svg { color: var(--yellow-dark); }

.hero__floating-badge--1 {
  top: 12%;
  left: -10%;
  animation-delay: 0s;
}
.hero__floating-badge--2 {
  bottom: 18%;
  right: -10%;
  animation-delay: 1.5s;
}

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

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }
  .hero__eyebrow { justify-content: center; }
  .hero__subtitle { margin: 0 auto 2rem; }
  .hero__actions { justify-content: center; }
  .hero__trust { justify-content: center; }
  .hero__visual { display: none; }
}
