/* ===== SERVICE CARD ===== */
.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-card-num {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--paper-2);
  color: var(--red);
  font-weight: 900;
  font-size: 0.9rem;
  margin-bottom: 28px;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 1.3rem;
  margin: 0 0 10px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.service-card-link {
  margin-top: 24px;
  color: var(--red);
  font-weight: 900;
  font-size: 0.88rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; color: var(--red-2); }

.service-card--featured {
  background: linear-gradient(135deg, var(--ink), #2b1919);
  color: var(--white);
  border-color: transparent;
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: rgba(255,255,255,0.65); }
.service-card--featured .service-card-num {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.service-card--featured .service-card-link { color: var(--red-light); }

/* ===== POST CARD ===== */
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.post-card-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--paper-2);
}
.post-card-thumb img { width:100%;height:100%;object-fit:cover;transition:transform 0.5s ease; }
.post-card:hover .post-card-thumb img { transform: scale(1.04); }

.post-card-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }

.post-card-cat {
  font-size: 0.72rem; font-weight: 900;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px; display: block;
}

.post-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem; font-weight: 700;
  color: var(--ink); line-height: 1.3;
  margin-bottom: 12px; letter-spacing: -0.02em;
}
.post-card-title a { color: inherit; }
.post-card-title a:hover { color: var(--red); }

.post-card-excerpt { font-size: 0.88rem; color: var(--muted); line-height: 1.65; flex: 1; margin-bottom: 20px; }

.post-card-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: var(--muted);
  border-top: 1px solid var(--line); padding-top: 16px; margin-top: auto;
}
.post-card-date { display: flex; align-items: center; gap: 6px; }
.post-card-read { color: var(--red); font-weight: 900; }

/* ===== TESTIMONIAL CARD ===== */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--red);
  opacity: 0.1;
  position: absolute;
  top: 16px; left: 24px;
  line-height: 1;
}

.testimonial-stars { display:flex;gap:3px;margin-bottom:14px; }
.testimonial-text { font-size:0.95rem;color:var(--muted);line-height:1.75;font-style:italic;margin-bottom:22px;position:relative;z-index:1; }

.testimonial-author { display:flex;align-items:center;gap:12px; }
.testimonial-avatar {
  width:44px;height:44px;border-radius:50%;
  background:var(--paper-2);display:flex;align-items:center;justify-content:center;
  font-family:var(--font-heading);font-weight:700;color:var(--red);font-size:1rem;flex-shrink:0;
}
.testimonial-name { font-weight:700;font-size:0.9rem;color:var(--ink); }
.testimonial-role { font-size:0.78rem;color:var(--muted); }

/* ===== TIMELINE ITEM ===== */
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 8px 24px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}
.timeline-item-num {
  grid-row: span 2;
  color: var(--red);
  font-weight: 900;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  align-self: center;
}
.timeline-item h3 { margin: 0; font-size: 1.25rem; color: var(--ink); }
.timeline-item p  { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ===== AREA CARD ===== */
.area-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  display: grid;
  align-content: center;
  gap: 4px;
  box-shadow: var(--shadow);
}
.area-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.area-row:last-child { border-bottom: 0; }
.area-row span { font-weight: 900; font-size: 0.95rem; }
.area-row b { color: var(--red-light); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 900; }

/* ===== BENEFIT ITEM ===== */
.benefit-item { display:flex;gap:20px;align-items:flex-start; }
.benefit-icon {
  width:48px;height:48px;border-radius:16px;
  background:var(--paper-2);display:flex;align-items:center;justify-content:center;
  color:var(--red);flex-shrink:0;
}
.benefit-content h4 { font-size:1rem;margin-bottom:5px;color:var(--ink);letter-spacing:-0.01em; }
.benefit-content p  { font-size:0.88rem;color:var(--muted);line-height:1.65;margin:0; }
