/* ============================================================
   home.css — Stijlen voor de PL-Digital homepagina
   ============================================================ */

.hero {
  max-width: 800px;
  width: 100%;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.8s 0.1s ease both;
  opacity: 0;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.eyebrow span { color: var(--accent); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1.4rem;
  animation: fadeUp 0.8s 0.2s ease both;
  opacity: 0;
}
.hero h1 .highlight {
  color: var(--accent);
  font-weight: 700;
}

.hero .lead {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
  opacity: 0;
}

/* --- Gradient divider --- */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent2) 40%, transparent 100%);
  margin-bottom: 2.5rem;
  animation: grow 0.8s 0.45s ease both;
  transform-origin: left;
  opacity: 0;
}

/* --- Services grid --- */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  width: 100%;
  animation: fadeUp 0.8s 0.55s ease both;
  opacity: 0;
}

.service {
  background: var(--surface);
  padding: 1.6rem 1.4rem;
  transition: background 0.2s;
}
.service:hover { background: #131920; }

.service .s-icon {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  display: block;
}
.service .s-label {
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.service h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.service p {
  font-size: 0.75rem;
  color: var(--muted);
  line-height: 1.6;
}

/* --- Status badge --- */
.status-bar {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  animation: fadeUp 0.8s 0.7s ease both;
  opacity: 0;
}
.status-bar .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  margin-right: 0.4rem;
  animation: pulse 2s ease-in-out infinite;
}
.status-bar .sep { color: var(--border); }
