/* ════════════════════════════════════════════
   A3 Digital Tools — Homepage Styles
════════════════════════════════════════════ */

/* ── HERO ── */
.hero {
  background: var(--white);
  padding: var(--sp-20) 0 var(--sp-16);
  border-bottom: 1px solid var(--gray-100);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 800px 400px at 50% -20%, rgba(41,82,227,0.055) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--blue-light);
  border: 1px solid var(--blue-mid);
  border-radius: var(--radius-full);
  padding: 7px 18px;
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  color: var(--blue-dark);
  margin-bottom: var(--sp-6);
  letter-spacing: 0.02em;
}
.hero__badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--teal);
  animation: heroPulse 2s ease-in-out infinite;
}
@keyframes heroPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: var(--fw-black);
  color: var(--gray-900);
  line-height: var(--lh-tight);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.03em;
}
.hero__title-accent { color: var(--blue); }

.hero__subtitle {
  font-size: var(--text-md);
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto var(--sp-8);
  line-height: var(--lh-normal);
}

/* ── HERO CTAs ── */
.hero__ctas {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
}

/* ── HERO STATS (removed) ── */
.hero__stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
  padding-top: var(--sp-8);
  border-top: 1px solid var(--gray-100);
}
.hero__stat { text-align: center; }
.hero__stat-value {
  display: block;
  font-family: var(--font-cond);
  font-size: 32px;
  font-weight: var(--fw-black);
  color: var(--blue);
  line-height: 1;
  letter-spacing: -0.02em;
}
.hero__stat-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--fw-semi);
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: var(--sp-1);
}

/* ── POPULAR TOOLS SECTION ── */
.section-tools {
  padding: var(--sp-16) 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

/* ── CATEGORIES SECTION ── */
.section-categories {
  padding: var(--sp-16) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

/* ── WHY SECTION ── */
.section-why {
  padding: var(--sp-16) 0;
  background: var(--blue-light);
  border-bottom: 1px solid var(--blue-mid);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue-mid); }
.why-card__icon {
  font-size: 32px;
  margin-bottom: var(--sp-4);
  display: block;
}
.why-card__title {
  font-size: var(--text-md);
  font-weight: var(--fw-xbold);
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
}
.why-card__desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: var(--lh-normal);
  margin: 0;
}

/* ── HOW IT WORKS ── */
.section-how {
  padding: var(--sp-16) 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}
.steps-row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: var(--sp-8);
}
.step {
  flex: 1;
  text-align: center;
  padding: 0 var(--sp-5);
  max-width: 260px;
}
.step__num {
  width: 52px; height: 52px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-cond);
  font-size: 24px;
  font-weight: var(--fw-black);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-4);
  box-shadow: 0 6px 20px rgba(41,82,227,0.25);
}
.step__icon {
  font-size: 32px;
  margin-bottom: var(--sp-3);
  display: block;
}
.step__title {
  font-size: var(--text-md);
  font-weight: var(--fw-xbold);
  color: var(--gray-900);
  margin-bottom: var(--sp-2);
}
.step__desc {
  font-size: var(--text-sm);
  color: var(--gray-500);
  line-height: var(--lh-normal);
  margin: 0;
}
.step-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 var(--sp-2);
  margin-top: 26px;
  color: var(--gray-300);
  flex-shrink: 0;
}

/* ── BLOG SECTION ── */
.section-blog {
  padding: var(--sp-16) 0;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

/* ── CTA BAND ── */
.section-cta-band {
  padding: var(--sp-16) 0;
  background: var(--blue);
}
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-8);
  flex-wrap: wrap;
}
.cta-band__title {
  font-size: var(--text-2xl);
  font-weight: var(--fw-black);
  color: var(--white);
  margin-bottom: var(--sp-2);
}
.cta-band__desc {
  font-size: var(--text-md);
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* ── HERO: stats removed — tighten bottom spacing ── */
.hero__stats { display: none; }
.hero__ctas  { margin-bottom: 0; }
