.product-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .product-showcase { grid-template-columns: 1fr; gap: 2.5rem; }
}

.product-visual {
  border-radius: 2rem;
  overflow: hidden;
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-info-title {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.product-spec-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.product-spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--zinc-700);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.product-spec-list li i {
  color: var(--emerald-600);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--zinc-50);
  border-radius: 1.25rem;
  border: 1.5px solid var(--zinc-200);
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: var(--emerald-600);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--zinc-600);
  font-size: 0.875rem;
  line-height: 1.6;
}

/* ===== CONTACT BLOCK ===== */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.contact-card {
  background: var(--zinc-50);
  border: 1.5px solid var(--zinc-200);
  border-radius: 1.25rem;
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}

.contact-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-color: var(--emerald-300);
}

.contact-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.contact-card-icon--green { background: var(--emerald-50); color: var(--emerald-600); }
.contact-card-icon--blue { background: #e0f2fe; color: #0284c7; }
.contact-card-icon--teal { background: #f0fdfa; color: #0d9488; }
.contact-card-icon--purple { background: #f3e8ff; color: #7c3aed; }

.contact-card-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--zinc-400);
}

.contact-card-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--zinc-900);
}

.contact-card-hint {
  font-size: 0.85rem;
  color: var(--zinc-500);
}
