/* home.css — Home page specific styles */

/* === Hero === */

.hero {
  padding-top: 120px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.hero__sub {
  font-size: 18px;
  color: var(--muted);
  margin-top: 16px;
  max-width: 480px;
  line-height: 1.6;
}

.hero__bullets {
  margin-top: 28px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}

.hero__micro {
  font-size: 13px;
  color: var(--muted);
  margin-top: 16px;
}

.hero__right {
  position: relative;
}

.hero__visual {
  border-radius: 16px;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  right: -10px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.hero__badge-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.hero__badge-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

/* === Service card === */

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

.service-card .ph {
  border-radius: 8px;
}

.service-card__num {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
}

.service-card h3 {
  font-size: 18px;
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.service-card .link-arrow {
  margin-top: auto;
}

/* === Process === */

.process {
  position: relative;
}

.process__step {
  text-align: center;
  position: relative;
}

.process__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process__title {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
}

.process__desc {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.4;
}

/* === About badge === */

.about__badge {
  position: absolute;
  bottom: -16px;
  right: -10px;
  background: var(--ink);
  color: #fff;
  border-radius: 12px;
  padding: 16px 24px;
  box-shadow: var(--shadow-card);
}

.about__badge-num {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--accent);
}

.about__badge-label {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}
